Development status:
Released,
Release: JSocket-Release-1.0.0
Information status: Updated
Repository:
http://svn.code.sf.net/p/tango-ds/code/DeviceClasses/Communication/JSocket
Contact:
Class Description
This class implements basic socket IPC.
Families: Communication
Key words:
Platform: Unix Like
Language: Java
License: GPL
Contact:
Hardware
Manufacturer: none
Bus: Socket
Class interface
Attributes:
Commands:
Name | Description |
---|---|
StateInput: DevVoid Output: State State Code |
This command gets the device state (stored in its <i>device_state</i> data member) and returns it to the caller. |
StatusInput: DevVoid Output: ConstDevString Status description |
This command gets the device status (stored in its <i>device_status</i> data member) and returns it to the caller. |
ReconnectInput: DevVoid Output: DevVoid |
Attempts to re-establish the socket connection. |
WriteInput: DevString Output: DevVoid |
Command used to send a string to the socket. |
WriteAndReadInput: DevString Command string. Output: DevString Answer string. |
Write to the socket and waits for the answer. The end of the answer is triggered by the new line character! |
WriteReadUntilInput: DevVarStringArray [0] = Command string to be send, [1] = end of message character Output: DevString Answer string. |
Write to the socket and waits for the answer. The answer is triggered by select() which indicates that the the anser has arrived. |
WriteShortArrayInput: DevVarShortArray array to write Output: DevVoid |
write on socket input Argument. |
ReadInput: DevVoid Output: DevString |
Command used to read a string from the socket. |
ReadlnInput: DevVoid Output: DevString argout |
Reads from a socket until a `` `` has been received. |
ReadUntilInput: DevString This is the terminator Output: DevString This is the read string. |
This command read data from the socket until the terminator has been reached. |
ReadShortArrayInput: DevLong number of char to read Output: DevVarShortArray char read on socket |
read on socket and return output Argument. |
Pipes:
Properties:
Name | Description |
---|---|
HostnameDevString | This is the hostname of the host to connect to. |
PortDevLong | This is the port number to connect to. |
ReadtimeoutDevShort | Read timeout in milliseconds. |
AutoReconnectDevBoolean | If true, the server try to re-create and re-connect to the socket after a failure. NOTE : The default values is false. |
DisableNagleDevBoolean | Enable/disable TCP_NODELAY (disable/enable Nagle`s algorithm). true is disable Nagle`s algorithm or TcpNoDelay Enable. false is enable Nagle`s algorithm or TcpnoDelay Disable. |
Please log in to comment.