bt.net.MessageReaderWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-core Show documentation
Show all versions of bt-core Show documentation
BitTorrent Client Library (Core)
package bt.net;
import bt.protocol.Message;
import java.util.Optional;
interface MessageReaderWriter {
Optional readMessage();
void writeMessage(Message message);
}