Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: be9290b33b474918ac20f895fdd42fc3b2bb52d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.eclipse.net4j.transport;

/**
 * @author Eike Stepper
 */
public interface BufferPool extends BufferProvider
{
  public boolean evictOne();

  public int evict(int survivors);

  /**
   * @author Eike Stepper
   */
  public interface Introspection extends BufferProvider.Introspection
  {
    public int getPooledBuffers();
  }
}

Back to the top