|
restart
DescriptionStops
a gateway if it is running and starts it up.
CategoryEvent
Gateway Development
Syntaxpublic void restart()
UsageIn most
cases, you implement this method as a call to the stop method followed by
a start method, but you may be able to optimize the restart method
based on the type of gateway.
ExampleThe
following example is the ColdFusion SocketGateway class restart method:
public void restart()
{
stop();
start();
}
|