Uses of Interface
io.helidon.common.Functions.CheckedConsumer
Packages that use Functions.CheckedConsumer
Package
Description
Common utilities for Helidon projects.
Helidon Data Repository with Jakarta Persistence Runtime.
WebSocket APIs.
-
Uses of Functions.CheckedConsumer in io.helidon.common
Methods in io.helidon.common with parameters of type Functions.CheckedConsumerModifier and TypeMethodDescriptionFunctions.unchecked(Functions.CheckedConsumer<T, E> consumer) Wrap aFunctions.CheckedConsumerinto aConsumer. -
Uses of Functions.CheckedConsumer in io.helidon.data.jakarta.persistence
Methods in io.helidon.data.jakarta.persistence with parameters of type Functions.CheckedConsumerModifier and TypeMethodDescription<E extends Throwable>
voidJpaRepositoryExecutor.DataRunner.run(JpaRepositoryExecutor executor, Functions.CheckedConsumer<EntityManager, E> task) Run persistence session task with no result.<E extends Throwable>
voidJpaRepositoryExecutor.run(Functions.CheckedConsumer<EntityManager, E> task) Run persistence session task. -
Uses of Functions.CheckedConsumer in io.helidon.websocket
Methods in io.helidon.websocket with parameters of type Functions.CheckedConsumerModifier and TypeMethodDescriptionprotected voidWsListenerBase.binaryBufferData(WsSession session, BufferData buffer, boolean last, Functions.CheckedConsumer<BufferData, ?> bufferDataConsumer) Process a binary message chunk as buffer data.protected voidWsListenerBase.binaryByteArray(WsSession session, BufferData buffer, boolean last, Functions.CheckedConsumer<byte[], ?> byteArrayConsumer) Process a binary message chunk as a byte array.protected voidWsListenerBase.binaryByteBuffer(WsSession session, BufferData buffer, boolean last, Functions.CheckedConsumer<ByteBuffer, ?> streamConsumer) Process a binary message chunk as a byte buffer.protected voidWsListenerBase.binaryInputStream(WsSession session, BufferData buffer, boolean last, Functions.CheckedConsumer<InputStream, ?> streamConsumer) Process a binary message chunk as an input stream.protected voidWsListenerBase.textReader(WsSession session, String text, boolean last, Functions.CheckedConsumer<Reader, ?> readerConsumer) Process a text message chunk as a reader.protected voidWsListenerBase.textString(WsSession session, String text, boolean last, Functions.CheckedConsumer<String, ?> stringConsumer) Process a text message chunk as a string.