void AppClient::onStatusMsg( const StatusMsg& statusMsg, const OmmConsumerEvent& ) { cout << endl << "Item Name: " << ( statusMsg.hasName() ? statusMsg.getName() : EmaString( "<not set>" ) ) << endl << "Service Name: " << (statusMsg.hasServiceName() ? statusMsg.getServiceName() : EmaString( "<not set>" ) ); if ( statusMsg.hasState() ) cout << endl << "Item State: " << statusMsg.getState().toString() << endl; }
void AppClient::onStatusMsg(const StatusMsg& statusMsg, const OmmProviderEvent& ommEvent) { cout << endl << "Handle: " << ommEvent.getHandle() << " Closure: " << ommEvent.getClosure() << endl; cout << endl << "Item Name: " << (statusMsg.hasName() ? statusMsg.getName() : EmaString("<not set>")) << endl << "Service Name: " << (statusMsg.hasServiceName() ? statusMsg.getServiceName() : EmaString("<not set>")); if (statusMsg.hasState()) cout << endl << "Item State: " << statusMsg.getState().toString() << endl; }
void AppClient::onStatusMsg( const StatusMsg& statusMsg, const OmmConsumerEvent& ) { if ( statusMsg.hasName() ) cout << endl << "Item Name: " << statusMsg.getName(); if ( statusMsg.hasServiceName() ) cout << endl << "Service Name: " << statusMsg.getServiceName(); if ( statusMsg.hasState() ) cout << endl << "Item State: " << statusMsg.getState().toString(); cout << endl; }
void AppClient::onStatusMsg( const StatusMsg& statusMsg, const OmmConsumerEvent& ommEvent ) { cout << "Received Status. Item Handle: " << ommEvent.getHandle() << " Closure: " << ommEvent.getClosure() << endl; if ( statusMsg.hasMsgKey() ) cout << endl << "Item Name: " << statusMsg.getName() << endl << "Service Name: " << statusMsg.getServiceName(); if ( statusMsg.hasState() ) cout << endl << "Item State: " << statusMsg.getState().toString() << endl; }