coldfusion.eventgateway.Gateway
Interface for implementing ColdFusion MX event gateways.
A class that implements this interface defines a ColdFusion MX event gateway type that you can use in ColdFusion MX applications. The class must implement the following methods:
Signature | Description |
---|---|
GatewayName |
The gateway constructor. |
String getGatewayID() |
Returns the gateway ID. |
GatewayHelper getHelper() |
Returns an instance of the |
int getStatus() |
Gets the event gateway status. |
String outgoingMessage(coldfusion. |
Handles a message sent by ColdFusion and processes it to send to a message receiver. |
void restart() |
Restarts a running event gateway. |
void setCFCListeners(String[] |
Identifies the CFCs that listen for incoming messages from the event gateway. |
void setGatewayID(String id) |
Sets the gateway ID that uniquely identifies the Gateway instance. |
void start() |
Starts the event gateway. |
void stop() |
Stops the event gateway. |