Uses of Interface
org.jctools.channels.WaitStrategy
-
Packages that use WaitStrategy Package Description org.jctools.channels.proxy This is a prototype, not working code. -
-
Uses of WaitStrategy in org.jctools.channels.proxy
Methods in org.jctools.channels.proxy with parameters of type WaitStrategy Modifier and Type Method 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)
static long
ProxyChannelFactory. writeAcquireWithWaitStrategy(ProxyChannelRingBuffer channelBackend, WaitStrategy waitStrategy)
-