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);
}
Aggregations