public class NetworkBufferPool extends Object implements BufferPoolFactory
MemorySegment instances
for the network stack.
The NetworkBufferPool creates LocalBufferPools from which the individual tasks draw
the buffers for the network data transfer. When new local buffer pools are created, the
NetworkBufferPool dynamically redistributes the buffers between the pools.| Constructor and Description |
|---|
NetworkBufferPool(int numberOfSegmentsToAllocate,
int segmentSize,
MemoryType memoryType)
Allocates all
MemorySegment instances managed by this pool. |
| Modifier and Type | Method and Description |
|---|---|
int |
countBuffers() |
BufferPool |
createBufferPool(int numRequiredBuffers,
int maxUsedBuffers)
Tries to create a buffer pool, which is guaranteed to provide at least the number of required
buffers.
|
void |
destroy() |
void |
destroyAllBufferPools()
Destroys all buffer pools that allocate their buffers from this
buffer pool (created via
createBufferPool(int, int)). |
void |
destroyBufferPool(BufferPool bufferPool)
Destroy callback for updating factory book keeping.
|
int |
getMemorySegmentSize() |
int |
getNumberOfAvailableMemorySegments() |
int |
getNumberOfRegisteredBufferPools() |
int |
getTotalNumberOfMemorySegments() |
boolean |
isDestroyed() |
void |
recycle(MemorySegment segment) |
MemorySegment |
requestMemorySegment() |
public NetworkBufferPool(int numberOfSegmentsToAllocate,
int segmentSize,
MemoryType memoryType)
MemorySegment instances managed by this pool.public MemorySegment requestMemorySegment()
public void recycle(MemorySegment segment)
public void destroy()
public boolean isDestroyed()
public int getMemorySegmentSize()
public int getTotalNumberOfMemorySegments()
public int getNumberOfAvailableMemorySegments()
public int getNumberOfRegisteredBufferPools()
public int countBuffers()
public BufferPool createBufferPool(int numRequiredBuffers, int maxUsedBuffers) throws IOException
BufferPoolFactoryThe buffer pool is of dynamic size with at least numRequiredBuffers buffers.
createBufferPool in interface BufferPoolFactorynumRequiredBuffers - minimum number of network buffers in this poolmaxUsedBuffers - maximum number of network buffers this pool offersIOExceptionpublic void destroyBufferPool(BufferPool bufferPool)
BufferPoolFactorydestroyBufferPool in interface BufferPoolFactorypublic void destroyAllBufferPools()
createBufferPool(int, int)).Copyright © 2014–2017 The Apache Software Foundation. All rights reserved.