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

org.zodiac.sdk.nio.channeling.ChannelingSSL Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.sdk.nio.channeling;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.function.Consumer;

public interface ChannelingSSL {
    void connect(Consumer status, Consumer error) throws IOException;
    void write(byte[] message, Consumer status, Consumer error) throws IOException;
    void read(Consumer status, Consumer error) throws IOException;
    void read(int size, Consumer status, Consumer error) throws IOException;
    void close(Consumer consumer, Consumer error) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy