ie.omk.smpp.event.ReceiverStartEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smppapi Show documentation
Show all versions of smppapi Show documentation
Java Implementation of the Short Message Peer to Peer API.
The newest version!
package ie.omk.smpp.event;
import ie.omk.smpp.Connection;
/**
* Event generated when the receiver thread starts. Usually applications can
* ignore this message as they don't need to do anything when the receiver
* thread starts.
*
* @author Oran Kelly
* @version $Id: ReceiverStartEvent.java 244 2006-01-22 21:56:28Z orank $
*/
public class ReceiverStartEvent extends SMPPEvent {
/**
* Create a new ReceiverStartEvent.
*/
public ReceiverStartEvent(Connection source) {
super(RECEIVER_START, source);
}
}