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