File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ private ConnectState(bool cancelled)
3333 private static Lazy < ObjectPool < SocketSender > > _socketSenderPool = new Lazy < ObjectPool < SocketSender > > ( ( ) =>
3434 {
3535 var policy = new DefaultPooledObjectPolicy < SocketSender > ( ) ;
36- var pool = new DefaultObjectPool < SocketSender > ( policy , EasyClient . SocketSenderPoolSzie ?? EasyClient . DefaultSocketSenderPoolSzie ) ;
36+ var pool = new DefaultObjectPool < SocketSender > ( policy , EasyClient . SocketSenderPoolSize ?? EasyClient . DefaultSocketSenderPoolSize ) ;
3737 return pool ;
3838 } ) ;
3939
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ public abstract class EasyClient : IEasyClient
3333
3434 public CompressionLevel CompressionLevel { get ; set ; } = CompressionLevel . NoCompression ;
3535
36- public static int ? SocketSenderPoolSzie { get ; set ; }
36+ public static int ? SocketSenderPoolSize { get ; set ; }
3737
38- internal static readonly int DefaultSocketSenderPoolSzie = 10 ;
38+ internal static readonly int DefaultSocketSenderPoolSize = 10 ;
3939
4040 protected EasyClient ( )
4141 : this ( NullLogger . Instance )
You can’t perform that action at this time.
0 commit comments