| 
 | Stomp::abortstomp_abortRolls back a transaction in progress DescriptionObject oriented style (method): 
   public bool Stomp::abort
    ( string  $transaction_id[, array$headers] )Procedural style: 
   bool stomp_abort
    ( resource  $link, string$transaction_id[, array$headers] )Rolls back a transaction in progress. 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. Examples
 Example #1 Object oriented style 
<?php
 Example #2 Procedural style 
<?php |