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

com.ircclouds.irc.api.comms.IConnection Maven / Gradle / Ivy

There is a newer version: 1.0-0014
Show newest version
package com.ircclouds.irc.api.comms;

import java.io.*;

public interface IConnection
{
	boolean open(String aHostname, int aPort) throws IOException;
	
	void close() throws IOException;

	int write(String aMessage) throws IOException;

	String read() throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy