private AdversarialFileChannel(StoreFileChannel channel, Adversary adversary) : base(channel)
 {
     this.@delegate  = channel;
     this._adversary = adversary;
 }
Beispiel #2
0
 internal SingleByteBufferChannel(StoreFileChannel channel) : base(channel)
 {
 }
 public static StoreFileChannel Wrap(StoreFileChannel channel, Adversary adversary)
 {
     return(new AdversarialFileChannel(channel, adversary));
 }