- NetworkUtils - Class in io.servicetalk.utils.internal
-
Network-related utilities.
- newDirectBuffer(long, long, int) - Static method in class PlatformDependent
-
Creates a new ByteBuffer for the specified pre-allocated direct memory.
- newMpscQueue(int) - Static method in class PlatformDependent
-
Create a new Queue which is safe to use for multiple producers (different threads) and a single
consumer (one thread!).
- newMpscQueue(int, int) - Static method in class PlatformDependent
-
Create a new Queue which is safe to use for multiple producers (different threads) and a single
consumer (one thread!).
- newSpscQueue(int) - Static method in class PlatformDependent
-
Create a new Queue which is safe to use for single producer (one thread!) and a single
consumer (one thread!).
- newSpscQueue(int, int) - Static method in class PlatformDependent
-
Create a new Queue which is safe to use for single producer (one thread!) and a single
consumer (one thread!).
- newUnboundedLinkedMpscQueue() - Static method in class PlatformDependent
-
Create a new MPSC Queue that will use a linked data structure and supports Collection.remove(Object).
- newUnboundedMpscQueue() - Static method in class PlatformDependent
-
Create a new Queue which is safe to use for multiple producers (different threads) and a single
consumer (one thread!).
- newUnboundedMpscQueue(int) - Static method in class PlatformDependent
-
Create a new Queue which is safe to use for multiple producers (different threads) and a single
consumer (one thread!).
- newUnboundedSpscQueue(int) - Static method in class PlatformDependent
-
Create a new unbounded Queue which is safe to use for single producer (one thread!) and a single
consumer (one thread!).
- NumberUtils - Class in io.servicetalk.utils.internal
-
Helper utilities for Numbers.