fix8  version 1.4.0
Open Source C++ FIX Framework
FIX8::Session_Schedule Struct Reference

#include <session.hpp>

Public Member Functions

 Session_Schedule (Schedule &sch, int reject_reason=0, const std::string &reject_text="Business messages are not accepted now.")
 

Public Attributes

Schedule _sch
 
int _reject_reason
 
const std::string _reject_text
 

Friends

std::ostream & operator<< (std::ostream &os, const Session_Schedule &what)
 

Detailed Description

Definition at line 365 of file session.hpp.

Constructor & Destructor Documentation

FIX8::Session_Schedule::Session_Schedule ( Schedule sch,
int  reject_reason = 0,
const std::string &  reject_text = "Business messages are not accepted now." 
)
inline

Definition at line 371 of file session.hpp.

371  :
372  _sch(sch), _reject_reason(reject_reason), _reject_text(reject_text)
373  {
374  }
const std::string _reject_text
Definition: session.hpp:369

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const Session_Schedule what 
)
friend

Inserter friend.

Parameters
osstream to send to
whatSession_Schedule reference
Returns
stream

Definition at line 380 of file session.hpp.

381  {
382  os << what._sch << " reject_reason:" << what._reject_reason << " reject_text:" << what._reject_text;
383  return os;
384  }

Member Data Documentation

int FIX8::Session_Schedule::_reject_reason

Definition at line 368 of file session.hpp.

const std::string FIX8::Session_Schedule::_reject_text

Definition at line 369 of file session.hpp.

Schedule FIX8::Session_Schedule::_sch

Definition at line 367 of file session.hpp.

Referenced by FIX8::Session::activation_service().


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