public interface Connectable
| attribute or method | API |
|---|---|
| CONNECT() | connect(character), connect(String) |
| CONNECTED() | connected() |
| DISCONNECT() | disconnect() |
| Modifier and Type | Method and Description |
|---|---|
logical |
connect(character options)
Method declaration for the CONNECT() procedure supported by sockets
web-services and server handles.
|
logical |
connect(java.lang.String options)
Method declaration for the CONNECT() procedure supported by sockets
web-services and server handles.
|
logical |
connected()
Method declaration for the CONNECTED() procedure supported by sockets web-services and
server handles, this will return
true if the socket is connected or
false otherwise. |
logical |
disconnect()
Method declaration for the DISCONNECT() procedure supported by sockets
web-services and server handles, this will attempt to disconnect the
resource and returns
true if succeeded or false
otherwise. |
logical connect(character options)
options - The set of parameters to establish the connect procedure. 4GL allows only
character values for this parameter.true if connection succeeded, or false
otherwiselogical connect(java.lang.String options)
options - The set of parameters to establish the connect procedure. 4GL allows only
character values for this parameter.true if connection succeeded, or false
otherwiselogical connected()
true if the socket is connected or
false otherwise.true if the server or socket is connected or false
otherwise.logical disconnect()
true if succeeded or false
otherwise.true if disconnect succeeded or false otherwise.