All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softwaremill.jox.ChannelClosed Maven / Gradle / Ivy

The newest version!
package com.softwaremill.jox;

/**
 * Returned by {@link Channel#sendOrClosed(Object)} and {@link Channel#receiveOrClosed()} when the channel is closed.
 */
public sealed interface ChannelClosed permits ChannelDone, ChannelError {
    ChannelClosedException toException();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy