Named pipe representation
Example #1
0
 /// <summary>
 /// Constructs a communicator out of the given pipe-name
 /// </summary>
 /// <param name="name">The pipe to build</param>
 public Communicator(string name)
 {
     pipe = new Pipe(name);
     factory = new FunctionCallFactory();
     rfactory = new ResponseFactory();
     initialized = pipe.initialize();
     this.name = name;
 }