Exemple #1
0
        public ServerPipe(string name, IReducerContext reducerContext) : base()
        {
            ServerName = name;

            Reducers = reducerContext;

            Dispatcher = new Dispatchers.Dispatcher(Reducers.Items);
        }
Exemple #2
0
        public BarPipeServer()
        {
            Context = BarMessagingContext.ReducerContext;

            serverPipe = new ServerPipe(ServerName, Context);

            serverPipe.Start();
        }