Search in sources :

Example 1 with CloseCharacterChannelEvent

use of org.ballerinalang.nativeimpl.io.events.characters.CloseCharacterChannelEvent in project ballerina by ballerina-lang.

the class IOUtils method close.

/**
 * Closes the character channel asynchronously.
 *
 * @param charChannel  channel which should be closed.
 * @param eventContext context of the event.
 * @param function     callback function which will be triggered.
 */
public static void close(CharacterChannel charChannel, EventContext eventContext, Function<EventResult, EventResult> function) {
    CloseCharacterChannelEvent closeEvent = new CloseCharacterChannelEvent(charChannel, eventContext);
    CompletableFuture<EventResult> future = EventManager.getInstance().publish(closeEvent);
    future.thenApply(function);
}
Also used : CloseCharacterChannelEvent(org.ballerinalang.nativeimpl.io.events.characters.CloseCharacterChannelEvent) EventResult(org.ballerinalang.nativeimpl.io.events.EventResult)

Aggregations

EventResult (org.ballerinalang.nativeimpl.io.events.EventResult)1 CloseCharacterChannelEvent (org.ballerinalang.nativeimpl.io.events.characters.CloseCharacterChannelEvent)1