Package org.eclipse.jetty.io
Class LeakTrackingByteBufferPool
- java.lang.Object
-
- org.eclipse.jetty.util.component.AbstractLifeCycle
-
- org.eclipse.jetty.util.component.ContainerLifeCycle
-
- org.eclipse.jetty.io.LeakTrackingByteBufferPool
-
- All Implemented Interfaces:
ByteBufferPool
,Container
,Destroyable
,Dumpable
,Dumpable.DumpableContainer
,LifeCycle
@ManagedObject @Deprecated(since="2021-05-27") public class LeakTrackingByteBufferPool extends ContainerLifeCycle implements ByteBufferPool
Deprecated.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListener
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.ByteBufferPool
ByteBufferPool.Bucket, ByteBufferPool.Lease
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Container
Container.InheritedListener, Container.Listener
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
-
-
Constructor Summary
Constructors Constructor Description LeakTrackingByteBufferPool(ByteBufferPool delegate)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.nio.ByteBuffer
acquire(int size, boolean direct)
Deprecated.Requests aByteBuffer
of the given size.void
clearTracking()
Deprecated.Clears the tracking data returned bygetLeakedAcquires()
,getLeakedReleases()
,getLeakedResources()
.long
getLeakedAcquires()
Deprecated.long
getLeakedReleases()
Deprecated.long
getLeakedRemoves()
Deprecated.long
getLeakedResources()
Deprecated.void
release(java.nio.ByteBuffer buffer)
Deprecated.Returns aByteBuffer
, usually obtained withByteBufferPool.acquire(int, boolean)
(but not necessarily), making it available for recycling and reuse.void
remove(java.nio.ByteBuffer buffer)
Deprecated.Removes aByteBuffer
that was previously obtained withByteBufferPool.acquire(int, boolean)
.-
Methods inherited from class org.eclipse.jetty.util.component.ContainerLifeCycle
addBean, addBean, addEventListener, addManaged, contains, destroy, dump, dump, dump, dump, dump, dumpObject, dumpStdErr, getBean, getBeans, getBeans, getContainedBeans, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, unmanage, updateBean, updateBean, updateBeans
-
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop, toString
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.io.ByteBufferPool
newByteBuffer
-
Methods inherited from interface org.eclipse.jetty.util.component.Dumpable.DumpableContainer
isDumpable
-
-
-
-
Constructor Detail
-
LeakTrackingByteBufferPool
public LeakTrackingByteBufferPool(ByteBufferPool delegate)
Deprecated.
-
-
Method Detail
-
acquire
public java.nio.ByteBuffer acquire(int size, boolean direct)
Deprecated.Description copied from interface:ByteBufferPool
Requests a
ByteBuffer
of the given size.The returned buffer may have a bigger capacity than the size being requested but it will have the limit set to the given size.
- Specified by:
acquire
in interfaceByteBufferPool
- Parameters:
size
- the size of the bufferdirect
- whether the buffer must be direct or not- Returns:
- the requested buffer
- See Also:
ByteBufferPool.release(ByteBuffer)
-
release
public void release(java.nio.ByteBuffer buffer)
Deprecated.Description copied from interface:ByteBufferPool
Returns a
ByteBuffer
, usually obtained withByteBufferPool.acquire(int, boolean)
(but not necessarily), making it available for recycling and reuse.- Specified by:
release
in interfaceByteBufferPool
- Parameters:
buffer
- the buffer to return- See Also:
ByteBufferPool.acquire(int, boolean)
-
remove
public void remove(java.nio.ByteBuffer buffer)
Deprecated.Description copied from interface:ByteBufferPool
Removes a
ByteBuffer
that was previously obtained withByteBufferPool.acquire(int, boolean)
.The buffer will not be available for further reuse.
- Specified by:
remove
in interfaceByteBufferPool
- Parameters:
buffer
- the buffer to remove- See Also:
ByteBufferPool.acquire(int, boolean)
,ByteBufferPool.release(ByteBuffer)
-
clearTracking
@ManagedAttribute("Clears the tracking data") public void clearTracking()
Deprecated.Clears the tracking data returned bygetLeakedAcquires()
,getLeakedReleases()
,getLeakedResources()
.
-
getLeakedAcquires
@ManagedAttribute("The number of acquires that produced a leak") public long getLeakedAcquires()
Deprecated.- Returns:
- count of ByteBufferPool.acquire() calls that detected a leak
-
getLeakedReleases
@ManagedAttribute("The number of releases that produced a leak") public long getLeakedReleases()
Deprecated.- Returns:
- count of ByteBufferPool.release() calls that detected a leak
-
getLeakedRemoves
@ManagedAttribute("The number of removes that produced a leak") public long getLeakedRemoves()
Deprecated.- Returns:
- count of ByteBufferPool.remove() calls that detected a leak
-
getLeakedResources
@ManagedAttribute("The number of resources that were leaked") public long getLeakedResources()
Deprecated.- Returns:
- count of resources that were acquired but not released
-
-