|
reSIProcate/repro
9694
|
#include <ForkControlMessage.hxx>


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 ForkControlMessage * | clone () const |
| virtual EncodeStream & | encode (EncodeStream &ostr) const |
| virtual EncodeStream & | encodeBrief (EncodeStream &ostr) const |
Public Attributes | |
| std::vector< resip::Data > | mTransactionsToProcess |
| std::vector< resip::Data > | mTransactionsToCancel |
| bool | mShouldCancelAll |
Definition at line 12 of file ForkControlMessage.hxx.
| 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.
{}
| 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);}
Definition at line 51 of file ForkControlMessage.hxx.
Definition at line 50 of file ForkControlMessage.hxx.
Definition at line 49 of file ForkControlMessage.hxx.
1.7.5.1