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

com.ircclouds.irc.api.IIRCSession Maven / Gradle / Ivy

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

import java.io.*;

import com.ircclouds.irc.api.domain.*;
import com.ircclouds.irc.api.filters.*;
import com.ircclouds.irc.api.listeners.*;

public interface IIRCSession
{
	ICommandServer getCommandServer();

	void addListeners(MESSAGE_VISIBILITY aLevel, IMessageListener... aListener);
	
	void removeListener(IMessageListener aListener);
	
	boolean open(IRCServer aServer) throws IOException;
	
	void close() throws IOException;

	IMessageFilter getMessageFilter();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy