Package io.servicetalk.transport.api
Interface IoExecutor
-
- All Superinterfaces:
AsyncCloseable,ListenableAsyncCloseable
- All Known Subinterfaces:
EventLoopAwareNettyIoExecutor,NettyIoExecutor
public interface IoExecutor extends ListenableAsyncCloseable
Executorthat handles IO.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisFileDescriptorSocketAddressSupported()Determine if fd addresses are supported.booleanisUnixDomainSocketSupported()Determine if Unix Domain Sockets are supported.-
Methods inherited from interface io.servicetalk.concurrent.api.AsyncCloseable
closeAsync, closeAsyncGracefully
-
Methods inherited from interface io.servicetalk.concurrent.api.ListenableAsyncCloseable
onClose
-
-
-
-
Method Detail
-
isUnixDomainSocketSupported
boolean isUnixDomainSocketSupported()
Determine if Unix Domain Sockets are supported.- Returns:
trueif Unix Domain Sockets are supported.
-
isFileDescriptorSocketAddressSupported
boolean isFileDescriptorSocketAddressSupported()
Determine if fd addresses are supported.- Returns:
trueif supported
-
-