reSIProcate/repro  9694
Public Member Functions | Public Attributes
repro::ForkControlMessage Class Reference

#include <ForkControlMessage.hxx>

Inheritance diagram for repro::ForkControlMessage:
Inheritance graph
[legend]
Collaboration diagram for repro::ForkControlMessage:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 ForkControlMessage (const repro::Processor &proc, const resip::Data &tid, resip::TransactionUser *tuPassed, bool cancelAllClientTransactions=false)
 ForkControlMessage (const ForkControlMessage &orig)
virtual ~ForkControlMessage ()
virtual ForkControlMessageclone () const
virtual EncodeStreamencode (EncodeStream &ostr) const
virtual EncodeStreamencodeBrief (EncodeStream &ostr) const

Public Attributes

std::vector< resip::DatamTransactionsToProcess
std::vector< resip::DatamTransactionsToCancel
bool mShouldCancelAll

Detailed Description

Definition at line 12 of file ForkControlMessage.hxx.


Constructor & Destructor Documentation

repro::ForkControlMessage::ForkControlMessage ( const repro::Processor proc,
const resip::Data tid,
resip::TransactionUser tuPassed,
bool  cancelAllClientTransactions = false 
) [inline]

Definition at line 15 of file ForkControlMessage.hxx.

                                                                  :
         ProcessorMessage(proc,tid,tuPassed)
      {
         mShouldCancelAll=cancelAllClientTransactions;
      }
repro::ForkControlMessage::ForkControlMessage ( const ForkControlMessage orig) [inline]

Definition at line 24 of file ForkControlMessage.hxx.

                                                        :
         ProcessorMessage(orig)
      {
         mShouldCancelAll=orig.mShouldCancelAll;
         mTransactionsToProcess=orig.mTransactionsToProcess;
         mTransactionsToCancel=orig.mTransactionsToCancel;
      }
virtual repro::ForkControlMessage::~ForkControlMessage ( ) [inline, virtual]

Definition at line 32 of file ForkControlMessage.hxx.

{}

Member Function Documentation

virtual ForkControlMessage* repro::ForkControlMessage::clone ( ) const [inline, virtual]

Implements repro::ProcessorMessage.

Definition at line 34 of file ForkControlMessage.hxx.

      {
         return new ForkControlMessage(*this);
      }
virtual EncodeStream& repro::ForkControlMessage::encode ( EncodeStream ostr) const [inline, virtual]

Implements repro::ProcessorMessage.

Definition at line 39 of file ForkControlMessage.hxx.

      { 
         ostr << "ForkControlMessage(tid="<<mTid<<"): " << 
         ostr << " newTrans=" << resip::Inserter(mTransactionsToProcess) <<
         ostr << " cancelTrans=" << resip::Inserter(mTransactionsToCancel) <<
         ostr << " cancelAll=" << mShouldCancelAll;
         return ostr; 
      }
virtual EncodeStream& repro::ForkControlMessage::encodeBrief ( EncodeStream ostr) const [inline, virtual]

Implements repro::ProcessorMessage.

Definition at line 47 of file ForkControlMessage.hxx.

{ return encode(ostr);}

Member Data Documentation

Definition at line 51 of file ForkControlMessage.hxx.

Definition at line 50 of file ForkControlMessage.hxx.

Definition at line 49 of file ForkControlMessage.hxx.


The documentation for this class was generated from the following file: