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

org.craft.atom.io.ChannelEvent Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.craft.atom.io;

/**
 * An I/O event associated with a {@link Channel}.
 * 
 * @author mindwind
 * @version 1.0, Feb 22, 2013
 */
public interface ChannelEvent {
	
	/**
     * @return the {@link Channel} which is associated with this event.
     */
    Channel getChannel();
    
    /**
     * @return the event type.
     */
    ChannelEventType getType();
    
    /**
     * Fire the event.
     */
    void fire();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy