Create() public static method

public static Create ( long maxBufferPoolSize, int maxBufferSize, bool isTransportBufferPool ) : InternalBufferManager
maxBufferPoolSize long
maxBufferSize int
isTransportBufferPool bool
return InternalBufferManager
コード例 #1
0
 public static void InitBufferManagers()
 {
     if (TransportBufferManager == null)
     {
         lock (syncRoot)
         {
             if (TransportBufferManager == null)
             {
                 TransportBufferManager = InternalBufferManager.Create(48 * 1024 * 1024, AmqpConstants.TransportBufferSize, true);
             }
         }
     }
 }