| 
 | Stomp::beginstomp_beginStarts a transaction DescriptionObject oriented style (method): 
   public bool Stomp::begin
    ( string  $transaction_id[, array$headers] )Procedural style: 
   bool stomp_begin
    ( resource  $link, string$transaction_id[, array$headers] )Starts a transaction. Parameters
 
 Return Values
   Returns  NotesTip 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_commit or stomp_abort. |