Пример #1
0
 public bool Equals(SessionKey other)
 {
     return other.ackMode == this.ackMode;
 }
Пример #2
0
 public bool Equals(SessionKey other)
 {
     return(other.ackMode == this.ackMode);
 }
Пример #3
0
 public SessionPool(ConnectionPool pool, SessionKey key, ObjectPool<PooledSession> sessionPool)
 {
     this.connectionPool = pool;
     this.sessionKey = key;
     this.sessionPool = sessionPool;
 }