Example #1
0
 internal BaseObject(BaseObject parent)
 {
     SlotId = parent.SlotId;
 }
Example #2
0
 public BindCommand(BaseObject destination, Pipe pipe)
     : base(destination)
 {
     Pipe = pipe;
 }
Example #3
0
 public CloseAckCommand(BaseObject destination)
     : base(destination)
 {
 }
Example #4
0
 public PlugCommand(BaseObject destination)
     : base(destination)
 {
 }
Example #5
0
 public AttachCommand(BaseObject destination, IEngine engine)
     : base(destination)
 {
     Engine = engine;
 }
Example #6
0
 public OwnCommand(BaseObject destination, Own child)
     : base(destination)
 {
     Child = child;
 }
Example #7
0
 public ActivateWriteCommand(BaseObject destination, long messagesRead)
     : base(destination)
 {
     MessagesRead = messagesRead;
 }
Example #8
0
 public HiccupCommand(BaseObject destination, YPipe<Frame> pipe)
     : base(destination)
 {
     Pipe = pipe;
 }
Example #9
0
 public InProcConnectedCommand(BaseObject destination)
     : base(destination)
 {
 }
Example #10
0
 public DoneCommand(BaseObject destination)
     : base(destination)
 {
 }
Example #11
0
 protected Command(BaseObject destination)
 {
     Destination = destination;
 }
Example #12
0
 public CloseRequestCommand(BaseObject destination, Own child)
     : base(destination)
 {
     Child = child;
 }
Example #13
0
 public ActivateReadCommand(BaseObject destination)
     : base(destination)
 {
 }
Example #14
0
 public CloseCommand(BaseObject destination, TimeSpan linger)
     : base(destination)
 {
     Linger = linger;
 }