The EventChannel
interface has operations which
support the management of supplier and consumer admin objects.
readonly attribute EventChannelFactory MyFactory;
A reference to the event channel factory which created the target object.
readonly attribute ConsumerAdmin default_consumer_admin;
A reference to a default consumer admin which is created automatically when the channel is created.
readonly attribute CosNotifyFilter::FilterFactory default_filter_factory;
A reference to the default filter factory.
readonly attribute SupplierAdmin default_supplier_admin;
A reference to a default supplier admin which is created automatically when the channel is created.
AdminIDSeq get_all_consumeradmins();
Obtains the IDs of all consumer admin objects associated with the target object.
AdminIDSeq get_all_supplieradmins();
Obtains the IDs of all supplier admin objects associated with the target object.
ConsumerAdmin get_consumeradmin(in AdminID id) raises(AdminNotFound);
Obtains a reference to a consumer admin from an admin ID.
id
- The ID of the admin for which a reference is
required. The ID is originally assigned by the channel
on creation of the admin.
AdminNotFound
exception is raised.
SupplierAdmin get_supplieradmin(in AdminID id) raises(AdminNotFound);
Obtains a reference to a supplier admin from an admin ID.
id
- The ID of the admin for which a reference is
required. The ID is originally assigned by the channel
on creation of the admin.
AdminNotFound
exception is raised.
ConsumerAdmin new_for_consumers(in InterFilterGroupOperator op, out AdminID id);
Creates a new consumer admin.
op
- The InterFilterGroupOperator
to
apply between filter results from the target object and
subsequently created proxy objects.
id
- The id assigned to the new consumer admin by
the event channel.
SupplierAdmin new_for_suppliers(in InterFilterGroupOperator op, out AdminID id);
Creates a new supplier admin.
op
- The InterFilterGroupOperator
to
apply between filter results from the target object and
subsequently created proxy objects.
id
- The id assigned to the new supplier admin by
the event channel.
Generated by the ORBacus IDL-to-HTML translator (non-commercial)