|
getStatus
DescriptionReturns
the gateway status.
CategoryEvent
Gateway Development
Syntaxpublic int getStatus()
ReturnsAn integer
status value. The Gateway interface defines the following status constants:
STARTING
RUNNING
STOPPING
STOPPED
FAILED
ExampleThe
following example is the ColdFusion SocketGateway class getStatus method:
public int getStatus()
{
return status;
}
|