|
|||||
|
||||||
Related Topics | Other Library Functions |
function |
tcp.put-string |
Library: TCP/IP client and server support (OMTCP)
Import: omtcp.xmd |
define external function tcp.put-string to value tcp.connection Connection from value string characters timeout value integer ms optional
Argument definitions
Use tcp.put-string to write characters to a TCP connection (sending them to the receiver).
Connection must exist (else external exception TCP05).
There may not be an active external sink derived from Connection with tcp.writer (else external exception TCP20).
If an error occurs while writing, external exception TCP12 is thrown.
If the write operation times out, external exception TCP06 is thrown.
Sequential uses of tcp.put-string is allowed.
import "omtcp.xmd" prefixed by tcp. process local tcp.connection Connection-1 set Connection-1 to tcp.connect to "localhost" on 5300 tcp.put-string to Connection-1 from "hello world" tcp.put-string to Connection-1 from ((("*" ||* 78) || "%n") ||* 40)
Copyright © Stilo International plc, 1988-2010.