Package | Description |
---|---|
org.jctools.channels.proxy |
This is a prototype, not working code.
|
Modifier and Type | Method and Description |
---|---|
static <E> ProxyChannel<E> |
ProxyChannelFactory.createMpscProxy(int capacity,
java.lang.Class<E> iFace,
WaitStrategy waitStrategy)
Create a default multi producer single consumer (MPSC) proxy channel.
|
static <E> ProxyChannel<E> |
ProxyChannelFactory.createProxy(int capacity,
java.lang.Class<E> iFace,
WaitStrategy waitStrategy,
java.lang.Class<? extends ProxyChannelRingBuffer> backendType)
Create a proxy channel using a user supplied back end.
|
static <E> ProxyChannel<E> |
ProxyChannelFactory.createSpscProxy(int capacity,
java.lang.Class<E> iFace,
WaitStrategy waitStrategy)
Create a default single producer single consumer (SPSC) proxy channel.
|
private static <E> ProxyChannel<E> |
ProxyChannelFactory.instantiate(java.lang.Class<?> proxy,
int capacity,
WaitStrategy waitStrategy) |