

Public Member Functions | |
| Consumer (String channelName, ContainerServicesBase services) throws AcsJException | |
| Consumer (String channelName, String channelNotifyServiceDomainName, ContainerServicesBase services) throws AcsJException | |
| void | consumerReady () throws AcsJException |
| void | addSubscription (Class<?extends IDLEntity > structClass) throws AcsJEventSubscriptionFailureEx |
| void | addSubscription (Class<?extends IDLEntity > structClass, Object receiver) throws AcsJException |
| void | removeSubscription (Class structClass) throws AcsJException |
| int | addFilter (Class<?extends IDLEntity > structClassName, String filter) throws AcsJException |
| boolean | removeFilter (int filter) throws AcsJException |
| void | disconnect_structured_push_consumer () |
| void | push_structured_event (StructuredEvent structuredEvent) throws org.omg.CosEventComm.Disconnected |
| void | offer_change (EventType[] eventType, EventType[] eventType1) throws org.omg.CosNotifyComm.InvalidEventType |
| void | disconnect () |
| void | suspend () |
| void | resume () |
| alma.acs.nc.Helper | getHelper () |
| void | reconnect (EventChannelFactory ecf) |
Protected Member Functions | |
| String | getChannelKind () |
| String | getChannelDomain () |
| String | getNotificationFactoryName () |
| void | configSubscriptions () throws AcsJEventSubscriptionFailureEx |
| void | configFilters () |
| String | getFilterLanguage () |
| void | processEvent (IDLEntity corbaData, EventDescription eventDescrip) |
| void | processEvent (Object corbaData) |
Protected Attributes | |
| final ChannelInfo | m_channelInfo |
| final Logger | m_logger |
| final Helper | m_helper |
| final String | m_notifyServiceName |
| final String | m_channelName |
| EventChannel | m_channel |
| final String | m_channelNotifyServiceDomainName |
| final HashMap< String, Object > | m_handlerFunctions = new HashMap<String, Object>() |
| final HashMap< String, Double > | m_handlerTimeoutMap |
| ConsumerAdmin | m_consumerAdmin |
| StructuredProxyPushSupplier | m_proxySupplier |
| OSPushConsumer | m_corbaRef |
| AnyAide | m_anyAide |
Static Protected Attributes | |
| static final String | RECEIVE_METHOD_NAME = "receive" |
Private Member Functions | |
| void | createConsumer () throws AcsJException |
Private Attributes | |
| final StopWatch | profiler |
| final boolean | isTraceEventsEnabled |
| IntHolder | consumerAdminID |
| IntHolder | proxyID |
| AcsNcReconnectionCallback | m_callback |
| final ReentrantLock | disconnectLock = new ReentrantLock() |
Static Private Attributes | |
| static final double | DEFAULT_MAX_PROCESS_TIME = 2000.0 |
Consumer is the Java implementation of a structured push consumer notification channel class. In short, this class is used to receive events asynchronously from notification channel suppliers. It can either be used as-is (assuming receivers/handlerFunctions are being utilized) or subclassed. Developers must remember to use the disconnect method after they are done receiving events.
| alma::acs::nc::Consumer::Consumer | ( | String | channelName, | |
| ContainerServicesBase | services | |||
| ) | throws AcsJException [inline] |
| alma::acs::nc::Consumer::Consumer | ( | String | channelName, | |
| String | channelNotifyServiceDomainName, | |||
| ContainerServicesBase | services | |||
| ) | throws AcsJException [inline] |
Creates a new instance of Consumer
| channelName | Subscribe to events on this channel registered in the CORBA Naming Service. | |
| channelNotifyServiceDomainName | Channel domain name, which is being used to determine notification service. May be null. | |
| services | This is used to access ACS logging system. |
| AcsJException | Thrown on any really bad error conditions encountered. |
References configFilters(), configSubscriptions(), createConsumer(), disconnect(), disconnectLock, getChannelKind(), alma::acs::nc::Helper::getChannelProperties(), alma::acs::nc::ChannelInfo::getEventHandlerTimeoutMap(), getHelper(), alma::acs::nc::Helper::getNotificationChannel(), getNotificationFactoryName(), alma::acs::nc::Helper::getNotifyFactory(), alma::acs::nc::AcsNcReconnectionCallback::init(), alma::acs::nc::ChannelProperties::isTraceEventsEnabled(), isTraceEventsEnabled, m_anyAide, m_callback, m_channel, m_channelInfo, m_channelName, m_channelNotifyServiceDomainName, m_handlerTimeoutMap, m_helper, m_logger, m_notifyServiceName, m_proxySupplier, profiler, alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx::setValue(), and alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx::setVariable().
| int alma::acs::nc::Consumer::addFilter | ( | Class<?extends IDLEntity > | structClassName, | |
| String | filter | |||
| ) | throws AcsJException [inline] |
Adds a single filter to this consumer. With ALMA's use of IDL structs for ICD events, this method is no longer useful. May become deprecated in future ACS releases.
| structClassName | IDL struct Java class filter is to be applied to. | |
| filter | The filter string in extended trader constraint language. |
| AcsJException | Thrown if there is some CORBA problem (like the filter is not using the correct grammar). |
References getChannelDomain(), getFilterLanguage(), m_channel, m_channelName, and m_proxySupplier.
Referenced by alma::demo::test::EventILConsumerImpl::EventConsumerImpl::initialize(), and alma::demo::test::EventConsumerImpl::EventConsumerImpl::initialize().
| void alma::acs::nc::Consumer::addSubscription | ( | Class<?extends IDLEntity > | structClass, | |
| Object | receiver | |||
| ) | throws AcsJException [inline] |
Add a subscription to a given (IDL struct) Java class and also register a method capable of processing that event (IDL struct). Each time an event of the (IDL struct) type is received, the Consumer will automatically invoke the receiver object's "receive" method using the (IDL struct) data extracted from the CORBA event.
| structClass | Type of event to subscribe to (i.e., alma.CORR.DataStruct.class). | |
| receiver | An object which implements a method called "receive". The "receive" method must accept an instance of a structClass object as its sole parameter. |
| AcsJException | Thrown if there is some CORBA problem. |
References addSubscription(), m_channelName, m_handlerFunctions, m_logger, and RECEIVE_METHOD_NAME.
| void alma::acs::nc::Consumer::addSubscription | ( | Class<?extends IDLEntity > | structClass | ) | throws AcsJEventSubscriptionFailureEx [inline] |
Add a subscription to a given (IDL struct) Java class. Use this method only when Consumer has been subclassed and processEvent overridden.
| structClass | Type of event to subscribe to (i.e., alma.CORR.DataStruct.class). If null then all events are subscribed. |
| AcsJEventSubscriptionFailureEx | Thrown if the subscription failed. |
References getChannelDomain(), m_channelName, m_consumerAdmin, alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx::setChannelName(), and alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx::setEventName().
Referenced by com::cosylab::acs::jms::ACSJMSMessageEntityConsumer::ACSJMSMessageEntityConsumer(), alma::acssamp::jtest::acssampConsumer::acssampConsumer(), addSubscription(), alma::acs::nc::CorbaReceiver::attach(), alma::acs::nc::ArchiveConsumer::configSubscriptions(), alma::alarmsystem::clients::SourceClient::connect(), alma::acs::nc::CorbaReceiver::connect(), alma::demo::test::DemoTest::connectSrcChannel(), alma::acs::nc::ExecutiveConsumer::ExecutiveConsumer(), alma::COUNTER::CounterConsumerImpl::CounterConsumerImpl::getBlocks(), alma::demo::test::EventILConsumerImpl::EventConsumerImpl::initialize(), alma::demo::test::EventConsumerImpl::EventConsumerImpl::initialize(), alma::demo::EventConsumerImpl::EventConsumerImpl::initialize(), alma::nctest::clients::FridgeConsumer::main(), alma::ACSCOURSE_MOUNT::MountConsumer::MountConsumer(), cl::utfsm::samplingSystemUI::core::NotificationChannelSuscription::NotificationChannelSuscription(), alma::lasersource::test::SourceStressTest::setUp(), alma::lasersource::test::SendTest::setUp(), alma::demo::test::DemoTest::setupSourceListener(), alma::alarmsystemdemo::listener::SourcesListener::SourcesListener(), and alma::acs::nc::refactored::NCSubscriberTest::testOldSubscriber().
| void alma::acs::nc::Consumer::configFilters | ( | ) | [inline, protected] |
Override this method in subclasses to specify all filters this Consumer will use. The method would then just make a lot of calls to addFilter(...). Important to note this is the last method invoked by consumer's constructor.
Referenced by Consumer().
| void alma::acs::nc::Consumer::configSubscriptions | ( | ) | throws AcsJEventSubscriptionFailureEx [inline, protected] |
Override this method to setup any number of event subscriptions. That is, this method is invoked by consumer's constructor after everything else has been initialized.
Reimplemented in alma::acs::nc::ArchiveConsumer.
Referenced by Consumer().
| void alma::acs::nc::Consumer::consumerReady | ( | ) | throws AcsJException [inline] |
After invoking this method, the user has no control over when push_structured_event is invoked by the notification channel. User may still add and remove subscriptions at any given time though. Also, the connection can be suspended and resumed.
Finally, consumerReady may spawn a thread to search for the channel if it does not already exist. Once the channel becomes available, all saved subscription are subscribed to and consumerReady is automatically invoked again.
| AcsJException | Thrown if the consumer cannot begin receiving events for some CORBA reason. |
References getHelper(), m_corbaRef, and m_proxySupplier.
Referenced by com::cosylab::acs::jms::ACSJMSTopicSubscriber::ACSJMSTopicSubscriber(), alma::acssamp::jtest::acssampJTest::acssampJTest(), alma::alarmsystem::clients::SourceClient::connect(), alma::acs::nc::CorbaReceiver::connect(), alma::demo::test::DemoTest::connectSrcChannel(), alma::COUNTER::CounterConsumerImpl::CounterConsumerImpl::getBlocks(), alma::demo::test::EventILConsumerImpl::EventConsumerImpl::initialize(), alma::demo::test::EventConsumerImpl::EventConsumerImpl::initialize(), alma::demo::EventConsumerImpl::EventConsumerImpl::initialize(), alma::ACSCOURSE_MOUNT::MountConsumer::main(), alma::nctest::clients::FridgeConsumer::main(), cl::utfsm::samplingSystemUI::core::PropertySamp::run(), alma::lasersource::test::SourceStressTest::setUp(), alma::lasersource::test::SendTest::setUp(), alma::acs::eventbrowser::model::EventReceivingTest::setUp(), alma::demo::test::client::ArchiveConsumerTest::setUp(), alma::demo::test::DemoTest::setupSourceListener(), alma::alarmsystemdemo::listener::SourcesListener::SourcesListener(), and alma::acs::nc::refactored::NCSubscriberTest::testOldSubscriber().
| void alma::acs::nc::Consumer::createConsumer | ( | ) | throws AcsJException [inline, private] |
Handles the CORBA creation of a consumer. Changed to private because only ctor of this class call this method as of Alma 5.0.2
| AcsJException | Any CORBA exceptions encountered are converted to an AcsJException for developer's ease of use. |
References consumerAdminID, m_channel, m_channelName, m_consumerAdmin, m_logger, m_notifyServiceName, m_proxySupplier, and proxyID.
Referenced by Consumer().
| void alma::acs::nc::Consumer::disconnect | ( | ) | [inline] |
This method must be invoked before a component or client is destroyed. Failure to do so can cause remote memory leaks. Make sure it is not invoked multiple times. Once it has been called, events will no longer be received.
Reimplemented in alma::acs::nc::CorbaReceiver.
References alma::acs::container::ContainerServicesBase::deactivateOffShoot(), alma::acs::nc::AcsNcReconnectionCallback::disconnect(), disconnectLock, alma::acs::nc::Helper::getContainerServices(), getHelper(), m_callback, m_channelName, m_consumerAdmin, m_corbaRef, m_logger, m_proxySupplier, removeSubscription(), and suspend().
Referenced by alma::demo::EventConsumerImpl::EventConsumerImpl::cleanUp(), alma::COUNTER::CounterConsumerImpl::CounterConsumerImpl::cleanUp(), alma::alarmsystem::clients::SourceClient::close(), com::cosylab::acs::jms::ACSJMSTopicSubscriber::close(), Consumer(), alma::demo::test::DemoTest::disconnect(), alma::COUNTER::CounterConsumerImpl::CounterConsumerImpl::getBlocks(), alma::demo::EventConsumerImpl::EventConsumerImpl::initialize(), alma::ACSCOURSE_MOUNT::MountConsumer::main(), alma::nctest::clients::FridgeConsumer::main(), alma::acssamp::jtest::acssampConsumer::ncDisconnect(), alma::COUNTER::CounterConsumerImpl::CounterConsumerImpl::receive(), cl::utfsm::samplingSystemUI::core::PropertySamp::stop(), alma::lasersource::test::SourceStressTest::tearDown(), alma::lasersource::test::SendTest::tearDown(), alma::acs::eventbrowser::model::EventReceivingTest::tearDown(), alma::demo::test::client::ArchiveConsumerTest::tearDown(), and alma::acs::eventbrowser::model::EventModelTest::testSubscribeToAnEventChannel().
| void alma::acs::nc::Consumer::disconnect_structured_push_consumer | ( | ) | [inline] |
Override this method to do some "housekeeping". Invoked by the CORBA Notification Service itself each time a Supplier subclass is destroyed. Do not call it from your code!
Referenced by alma::demo::test::EventILConsumerImpl::EventConsumerImpl::initialize(), and alma::demo::test::EventConsumerImpl::EventConsumerImpl::initialize().
| String alma::acs::nc::Consumer::getChannelDomain | ( | ) | [inline, protected] |
This method returns a constant character pointer to the notification channel domain which is normally equivalent to acscommon::ALMADOMAIN. The sole reason this method is provided is to accomodate subclasses which subscribe/publish non-ICD style events (ACS archiving channel for example).In that case, the developer would override this method.
Referenced by addFilter(), addSubscription(), and removeSubscription().
| String alma::acs::nc::Consumer::getChannelKind | ( | ) | [inline, protected] |
This method returns a constant character pointer to the "kind" of notification channel as registered with the naming service (i.e., the kind field of a CosNaming::Name) which is normally equivalent to acscommon::NC_KIND. The sole reason this method is provided is to accomodate subclasses which subscribe/publish non-ICD style events (ACS archiving channel for example).In that case, the developer would override this method.
Reimplemented in alma::acs::nc::ArchiveConsumer.
Referenced by Consumer().
| String alma::acs::nc::Consumer::getFilterLanguage | ( | ) | [inline, protected] |
This method returns a string to the type of filter constraint language to be used for filtering events which is normally equivalent to acsnc::FILTER_LANGUAGE_NAME. Override to change this behavior.
Referenced by addFilter().
| alma.acs.nc.Helper alma::acs::nc::Consumer::getHelper | ( | ) | [inline] |
Returns a reference to this instance's helper. Not too useful outside this class.
References m_helper.
Referenced by Consumer(), consumerReady(), disconnect(), alma::demo::test::EventILConsumerImpl::EventConsumerImpl::initialize(), and alma::demo::test::EventConsumerImpl::EventConsumerImpl::initialize().
| String alma::acs::nc::Consumer::getNotificationFactoryName | ( | ) | [inline, protected] |
This method returns the notify service name as registered with the CORBA Naming Service. This is normally equivalent to acscommon::ALMADOMAIN. The sole reason this method is provided is to accommodate subclasses which subscribe/publish non-ICD style events (ACS archiving channel for example). In that case, the developer would override this method (e.g. to return or logging channel with alma.acscommon.LOGGING_NOTIFICATION_FACTORY_NAME.value)
Reimplemented in alma::acs::nc::ArchiveConsumer.
References alma::acs::nc::Helper::getNotificationFactoryNameForChannel(), m_channelName, m_channelNotifyServiceDomainName, and m_helper.
Referenced by Consumer().
| void alma::acs::nc::Consumer::offer_change | ( | EventType[] | eventType, | |
| EventType[] | eventType1 | |||
| ) | throws org.omg.CosNotifyComm.InvalidEventType [inline] |
A "smart" consumer will override this method to subscribe to new domain/type events as suppliers offer them. A fairly advanced feature. Do not call it from your code!
| eventType | Domain/type pairs of events that have been added to this channel. | |
| eventType1 | Domain/type pairs of events that have been removed from this channel. |
| org.omg.CosNotifyComm.InvalidEventType | ... |
Reimplemented in alma::acssamp::jtest::acssampConsumer.
Referenced by alma::demo::test::EventILConsumerImpl::EventConsumerImpl::initialize(), and alma::demo::test::EventConsumerImpl::EventConsumerImpl::initialize().
| void alma::acs::nc::Consumer::processEvent | ( | Object | corbaData | ) | [inline, protected] |
The method invoked each time an ICD-style event is received. Consumer subclasses must override this method. If receiver object(s) have been registered using the addSubscription method, this method does not need to be overriden.
| corbaData | Generally an IDL struct. It has already been extracted from the CORBA Any (when it was packed into the CORBA structured event) and a simple typecast on it to the correct type should be enough to make it usable. |
Reimplemented in alma::nctest::clients::FridgeConsumer.
References m_channelName, and m_logger.
| void alma::acs::nc::Consumer::processEvent | ( | IDLEntity | corbaData, | |
| EventDescription | eventDescrip | |||
| ) | [inline, protected] |
The method invoked each time an ICD-style event is received. Consumer subclasses must override this method or the other signature of processEvent (if they do not care about the EventDescription parameter). If receiver object(s) have been registered using the addSubscription method, this method does not need to be overriden.
| corbaData | Generally an IDL struct. It has already been extracted from the CORBA Any (when it was packed into the CORBA structured event) and a simple typecast on it to the correct type should be enough to make it usable. | |
| eventDescrip | An instance of an IDL struct which describes the event. See acsnc.idl for the defintion. |
Reimplemented in alma::acssamp::jtest::acssampConsumer.
References DEFAULT_MAX_PROCESS_TIME, alma::acs::util::StopWatch::getLapTimeMillis(), m_handlerFunctions, m_handlerTimeoutMap, m_logger, alma::acsnc::EventDescription::name, profiler, RECEIVE_METHOD_NAME, and alma::acs::util::StopWatch::reset().
Referenced by push_structured_event().
| void alma::acs::nc::Consumer::push_structured_event | ( | StructuredEvent | structuredEvent | ) | throws org.omg.CosEventComm.Disconnected [inline] |
As of ACS 3.0, override processEvent(Object) instead of this CORBA method. push_structured_event is what is called each time an event is received. Do not call it from your code!
| structuredEvent | The structured event sent by a supplier subclass. |
| org.omg.CosEventComm.Disconnected |
Reimplemented in com::cosylab::acs::jms::ACSJMSMessageEntityConsumer, alma::acssamp::jtest::acssampConsumer, cl::utfsm::samplingSystemUI::core::NotificationChannelSuscription, alma::acs::eventbrowser::model::AdminConsumer, alma::acs::nc::ArchiveConsumer, and alma::acs::nc::CorbaReceiver.
References alma::acs::nc::AnyAide::complexAnyToObject(), isTraceEventsEnabled, m_anyAide, m_channelName, m_logger, alma::acsnc::EventDescription::name, and processEvent().
| void alma::acs::nc::Consumer::reconnect | ( | EventChannelFactory | ecf | ) | [inline] |
| boolean alma::acs::nc::Consumer::removeFilter | ( | int | filter | ) | throws AcsJException [inline] |
Removes a single filter from this consumer. See deprecation comments on the addFilter method.
| filter | The filter's unique ID. This parameter is the return value of the addFilter method. |
| AcsJException | Thrown if CORBA problems are encountered. |
References m_channelName, m_logger, and m_proxySupplier.
| void alma::acs::nc::Consumer::removeSubscription | ( | Class | structClass | ) | throws AcsJException [inline] |
Remove a subscription from this consumer. After invoking this, events of the parameter's type will no longer be received.
| structClassName | Unsubscribes from this IDL struct (Java class). By passing in null here, no events of any type will be received. |
| AcsJException | Thrown if there is some CORBA problem (like this consumer has never subscribed to the IDL struct). |
References getChannelDomain(), m_channelName, m_consumerAdmin, and m_handlerFunctions.
Referenced by alma::acs::nc::CorbaReceiver::detach(), alma::acs::nc::CorbaReceiver::disconnect(), and disconnect().
| void alma::acs::nc::Consumer::resume | ( | ) | [inline] |
Used to reenable the Consumer after a call to the suspend() method. Queued events will be received after this call, see suspend().
This call has no effect if the consumer is not connected at all (see consumerReady()), or if it has not been suspended.
References m_proxySupplier.
Referenced by alma::demo::test::EventILConsumerImpl::EventConsumerImpl::initialize(), and alma::demo::test::EventConsumerImpl::EventConsumerImpl::initialize().
| void alma::acs::nc::Consumer::suspend | ( | ) | [inline] |
Used to temporarily halt receiving events of all types.
If the consumer has been connected already (method consumerReady(), then after calling this method, incoming events will be buffered instead of being discarded; unexpired events will be received later, after a call to resume().
This design follows CORBA NC standard, as described in <it>Notification Service Specification, Version 1.1, formal/04-10-11, 3.4.13 The StructuredProxyPushSupplier Interface.</it>
References disconnectLock, and m_proxySupplier.
Referenced by disconnect(), alma::demo::test::EventILConsumerImpl::EventConsumerImpl::initialize(), alma::demo::test::EventConsumerImpl::EventConsumerImpl::initialize(), and alma::nctest::clients::FridgeConsumer::processEvent().
IntHolder alma::acs::nc::Consumer::consumerAdminID [private] |
Referenced by createConsumer().
final double alma::acs::nc::Consumer::DEFAULT_MAX_PROCESS_TIME = 2000.0 [static, private] |
The default maximum amount of time an event handler is given to process event before an exception is logged. This is used when an end user does *not* define the appropriate XML elements within the ACS CDB. See the EventChannel.xsd for more info, e.g. at http://www.eso.org/projects/alma/develop/acs/OnlineDocs/ACS_docs/schemas/urn_schemas-cosylab-com_EventChannel_1.0/complexType/EventDescriptor.html#attr_MaxProcessTime .
Referenced by processEvent().
final ReentrantLock alma::acs::nc::Consumer::disconnectLock = new ReentrantLock() [private] |
Referenced by Consumer(), disconnect(), and suspend().
final boolean alma::acs::nc::Consumer::isTraceEventsEnabled [private] |
Whether sending of events should be logged
Referenced by Consumer(), and push_structured_event().
AnyAide alma::acs::nc::Consumer::m_anyAide [protected] |
Helper class used to manipulate CORBA anys
Referenced by Consumer(), push_structured_event(), and alma::acs::nc::ArchiveConsumer::push_structured_event().
Referenced by Consumer(), and disconnect().
EventChannel alma::acs::nc::Consumer::m_channel [protected] |
There can be only one notification channel for any given consumer.
Referenced by addFilter(), Consumer(), createConsumer(), and reconnect().
final ChannelInfo alma::acs::nc::Consumer::m_channelInfo [protected] |
helper object contains various info about the notification channel
Referenced by Consumer().
final String alma::acs::nc::Consumer::m_channelName [protected] |
The channel has exactly one name registered in the CORBA Naming Service.
Referenced by addFilter(), addSubscription(), Consumer(), createConsumer(), disconnect(), cl::utfsm::samplingSystemUI::core::NotificationChannelSuscription::getChannelName(), alma::acs::nc::CorbaReceiver::getChannelName(), getNotificationFactoryName(), cl::utfsm::samplingSystemUI::core::NotificationChannelSuscription::NotificationChannelSuscription(), alma::acs::nc::ExecutiveConsumer::processEvent(), processEvent(), alma::acs::nc::ExecutiveConsumer::push_structured_event(), push_structured_event(), alma::acs::nc::ArchiveConsumer::push_structured_event(), alma::acs::eventbrowser::model::AdminConsumer::push_structured_event(), com::cosylab::acs::jms::ACSJMSMessageEntityConsumer::push_structured_event(), reconnect(), removeFilter(), and removeSubscription().
final String alma::acs::nc::Consumer::m_channelNotifyServiceDomainName [protected] |
The channel notification service domain name, can be null.
Referenced by Consumer(), and getNotificationFactoryName().
ConsumerAdmin alma::acs::nc::Consumer::m_consumerAdmin [protected] |
The consumer admin object used by consumers to get a reference to the structured supplier proxy.
Referenced by addSubscription(), alma::acs::eventbrowser::model::AdminConsumer::AdminConsumer(), createConsumer(), disconnect(), and removeSubscription().
OSPushConsumer alma::acs::nc::Consumer::m_corbaRef [protected] |
CORBA reference to ourself
Referenced by consumerReady(), and disconnect().
final HashMap<String, Object> alma::acs::nc::Consumer::m_handlerFunctions = new HashMap<String, Object>() [protected] |
Contains a list of handler/receiver objects whose "receive" method (see RECEIVE_METHOD_NAME) will be invoked when an event of a particular type is received.
Referenced by addSubscription(), processEvent(), and removeSubscription().
final HashMap<String, Double> alma::acs::nc::Consumer::m_handlerTimeoutMap [protected] |
maps event names to the maximum amount of time allowed for receiver methods to complete. Time is given in floating point seconds.
Referenced by Consumer(), and processEvent().
final Helper alma::acs::nc::Consumer::m_helper [protected] |
Provides access to the naming service among other things.
Referenced by Consumer(), getHelper(), getNotificationFactoryName(), and reconnect().
final Logger alma::acs::nc::Consumer::m_logger [protected] |
Provides access to the ACS logging system.
Referenced by addSubscription(), alma::acs::nc::ArchiveConsumer::ArchiveConsumer(), alma::acs::nc::ArchiveConsumer::configSubscriptions(), Consumer(), createConsumer(), disconnect(), alma::acssamp::jtest::acssampConsumer::offer_change(), alma::acs::nc::ExecutiveConsumer::processEvent(), processEvent(), cl::utfsm::samplingSystemUI::core::NotificationChannelSuscription::push_structured_event(), alma::acs::nc::ExecutiveConsumer::push_structured_event(), push_structured_event(), alma::acs::nc::ArchiveConsumer::push_structured_event(), alma::acs::eventbrowser::model::AdminConsumer::push_structured_event(), com::cosylab::acs::jms::ACSJMSMessageEntityConsumer::push_structured_event(), alma::acssamp::jtest::acssampConsumer::receive(), reconnect(), and removeFilter().
final String alma::acs::nc::Consumer::m_notifyServiceName [protected] |
Name of the notification service that hosts the channel that we consume event from.
Referenced by Consumer(), and createConsumer().
StructuredProxyPushSupplier alma::acs::nc::Consumer::m_proxySupplier [protected] |
The supplier proxy we are connected to.
Referenced by addFilter(), Consumer(), consumerReady(), createConsumer(), disconnect(), alma::acs::nc::CorbaReceiver::getProxySupplier(), removeFilter(), resume(), and suspend().
final StopWatch alma::acs::nc::Consumer::profiler [private] |
used to time the execution of receive methods
Referenced by Consumer(), and processEvent().
IntHolder alma::acs::nc::Consumer::proxyID [private] |
Referenced by createConsumer().
final String alma::acs::nc::Consumer::RECEIVE_METHOD_NAME = "receive" [static, protected] |
Referenced by addSubscription(), alma::acs::nc::ArchiveConsumer::ArchiveConsumer(), and processEvent().
1.6.2