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 FABChannelId NewInstance()
        {
            var id = new FABChannelId();

            id.Init();
            return(id);
        }
Esempio n. 3
0
 protected virtual FABChannelId NewID()
 {
     return(FABChannelId.NewInstance());
 }