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