|
Stomp::sendstomp_sendSends a message DescriptionObject oriented style (method):
public bool Stomp::send
( string
$destination
, mixed $msg
[, array $headers
] )Procedural style:
bool stomp_send
( resource
$link
, string $destination
, mixed $msg
[, array $headers
] )Sends a message to the Message Broker. Parameters
Return Values
Returns Notes
Tip
Stomp is inherently asynchronous. Synchronous communication can be implemented adding a receipt header. This will cause methods to not return anything until the server has acknowledged receipt of the message or until read timeout was reached. ExamplesSee stomp_ack. |