| 
 
       
       | 
        
          getStatus
        
         DescriptionReturns
the gateway status. CategoryEvent
Gateway DevelopmentSyntaxpublic int getStatus()ReturnsAn integer
status value. The Gateway interface defines the following status constants: STARTINGRUNNINGSTOPPINGSTOPPEDFAILED
ExampleThe
following example is the ColdFusion SocketGateway class getStatus method:  public int getStatus() 
    { 
        return status; 
    }
         |