(No version information available, might only be in SVN)
  
   Introduction
   
Represents a connection between PHP and a Stomp compliant Message Broker.
   
   
  
   Class synopsis
   
    
    
     
      Stomp
     
     {
    
    
    
   public bool abort
    ( 
string $transaction_id
   [, 
array $headers
   ] )
 
   public bool ack
    ( 
mixed $msg
   [, 
array $headers
   ] )
 
   public bool begin
    ( 
string $transaction_id
   [, 
array $headers
   ] )
 
   public bool commit
    ( 
string $transaction_id
   [, 
array $headers
   ] )
 
    public  __construct
     ([ 
string $broker = ini_get("stomp.default_broker_uri")
    [, 
string $username
    [, 
string $password
    [, 
array $headers
   ]]]] )
 
   public string error
    ( 
void
    )
 
   public stompframe readFrame
    ([ 
string $class_name = "stompFrame"
   ] )
 
   public bool send
    ( 
string $destination
   , 
mixed $msg
   [, 
array $headers
   ] )
 
   public bool subscribe
    ( 
string $destination
   [, 
array $headers
   ] )
 
   public bool unsubscribe
    ( 
string $destination
   [, 
array $headers
   ] )
 
   }