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

io.github.aleksas.arduino.simplerpc.Transport Maven / Gradle / Ivy

There is a newer version: 1.0.24
Show newest version
package io.github.aleksas.arduino.simplerpc;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public interface Transport {
    public void open();
    public void close();
    public boolean isOpen();
    public InputStream getInputStream() throws IOException;
    public OutputStream getOutputStream() throws IOException;
    public boolean useWritableByteChannel();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy