Esempio n. 1
0
 protected FABChannel(IFABChannel parent, FABChannelId id)
 {
     this.Parent        = parent;
     this.Id            = id;
     this.channelUnsafe = this.NewUnsafe();
     this.pipeline      = this.NewChannelPipeline();
 }
Esempio n. 2
0
 public static void CloseSafe(this IFABChannelUnsafe u)
 {
     CompleteChannelCloseTaskSafely(u, u.CloseAsync());
 }
Esempio n. 3
0
 public HeadContext(FABChannelPipeline pipeline)
     : base(pipeline, null, TailName, sSkipFlags)
 {
     this.channelUnsafe = pipeline.Channel.Unsafe;
     this.SetAdded();
 }