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