Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

eventc(1) [debian man page]

EVENTC(1)																 EVENTC(1)

NAME
eventc - create a CORBA EventChannel and register it in the naming service SYNOPSIS
eventc [-n channel-name] [-N factory-name] [-c nanoseconds] [-i id] [-p num] [-q num] [-R milliseconds] [-t repository-id] [-vh] [-ORBparameter value] [factory-uri] DESCRIPTION
eventc contacts the omniEvents server to request an Event Channel. The Event Channel is created within the the omniEvents process. eventc then registers the created Event Channel with the Naming Service, and exits. factory-uri: The factory may be specified as a URI. This may be an IOR, or a corbaloc::: or corbaname::: URI. Example: eventc corbaloc::localhost:11169/omniEvents If the factory-uri argument is not supplied, then the -N factory-name option is used to look up the server in the CORBA Name Service. OPTIONS
-n channel-name Sets the CORBA Name Service name for the new EventChannel CORBA object. Format for channel-name: [CONTEXT-ID[.CONTEXT-KIND]/]*OBJECT-ID[.OBJECT-KIND] Examples: foo, foo.bar, foo.bar/baz/qux, foo/bar/baz.qux. The default is EventChannel -N factory-name The CORBA Name Service name for the EventChannelFactory CORBA object. The default value is EventChannelFactory. This value is only used when the factory-uri argument is not supplied. -c nanoseconds Sets the CyclePeriod_ns parameter of the new event channel. -i id Set the InsName of new event channel, to enable access via corbaloc. -p num Sets the MaxNumProxies parameter of the new event channel. -q num Sets the MaxQueueLength parameter of the new event channel. -R milliseconds Sets the PullRetryPeriod_ms parameter of the new event channel. -t repository-id Sets the FilterId parameter of the new event channel. -v Output the CORBA IOR of the new EventChannel CORBA object. -h Display a short summary of command-line options. -ORBparameter value Standard omniORB options. see omniORB documentation for details. This option is commonly used to set the omniORB traceLevel, in or- der to get more detailed output. Example: -ORBtraceLevel 5 ENVIRONMENT VARIABLES
OMNIORB_CONFIG The location of the omniORB configuration file. COPYRIGHT
Copyright (C) 2003-2005 Alex Tingle, 1999 Paul Nader. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICU- LAR PURPOSE. EVENTC(1)

Check Out this Related Man Page

CosNotifyChannelAdmin_EventChannel(3erl)		     Erlang Module Definition			  CosNotifyChannelAdmin_EventChannel(3erl)

NAME
CosNotifyChannelAdmin_EventChannel - This module implements the OMG CosNotifyChannelAdmin::EventChannel interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosNotification/include/*.hrl"). This module also exports the functions described in: * CosNotification_QoSAdmin * CosNotification_AdminPropertiesAdmin EXPORTS
_get_MyFactory(Channel) -> ChannelFactory Types Channel = #objref ChannelFactory = #objref This readonly attribute maintains the reference of the event channel factory that created the target channel. _get_default_consumer_admin(Channel) -> ConsumerAdmin Types Channel = #objref ConsumerAdmin = #objref This is a readonly attribute which maintains a reference to a default ConsumerAdmin object associated with the target object. _get_default_supplier_admin(Channel) -> SupplierAdmin Types Channel = #objref SupplierAdmin = #objref This is a readonly attribute which maintains a reference to a default SupplierAdmin object associated with the target object. _get_default_filter_factory(Channel) -> FilterFactory Types Channel = #objref FilterFactory = #objref The default FilterFactory associated with the target channel is maintained by this readonly attribute. new_for_consumers(Channel, OpType) -> Return Types Channel = #objref OpType = 'AND_OP' | 'OR_OP' Return = {ConsumerAdmin, AdminID} ConsumerAdmin = #objref AdminID = long() This operation creates a new instance of a ConsumerAdmin and supplies an Id which may be used when invoking other operations exported by this module. The returned object will inherit the Quality of Service properties of the target channel. for_consumers(Channel) -> ConsumerAdmin Types Channel = #objref ConsumerAdmin = #objref A new new instance of a ConsumerAdmin object is created but no Id is returned. The returned object's operation type, i.e., 'AND_OP' or 'OR_OP' , will be set to the value of the configuration parameter filterOp . The target object's Quality of Service properties will be inherited by the returned ConsumerAdmin . new_for_suppliers(Channel, OpType) -> Return Types Channel = #objref OpType = 'AND_OP' | 'OR_OP' Return = {SupplierAdmin, AdminID} SupplierAdmin = #objref AdminID = long() Enables us to create a new instance of a SupplierAdmin . An Id, which may be used when invoking other operations exported by this module, is also returned. The current Quality of Service settings associated with the target object will be inherited by the Suppli- erAdmin . for_suppliers(Channel) -> SupplierAdmin Types Channel = #objref SupplierAdmin = #objref To create a new SupplierAdmin with the target object's current Quality of Service settings we can use this function. The returned object's operation type ( 'AND_OP' or 'OR_OP' ) will be determined by the configuration variable filterOp . get_consumeradmin(Channel, AdminID) -> ConsumerAdmin Types Channel = #objref AdminID = long() ConsumerAdmin = #objref | {'EXCEPTION', #'CosNotifyChannelAdmin_AdminNotFound'{}} If the given Id is associated with a ConsumerAdmin the object reference is returned. If such association never existed or the Con- sumerAdmin have terminated an exception is raised. get_supplieradmin(Channel, AdminID) -> SupplierAdmin Types Channel = #objref AdminID = long() SupplierAdmin = #objref | {'EXCEPTION', #'CosNotifyChannelAdmin_AdminNotFound'{}} Equal to the operation get_consumeradmin/2 but a reference to a SupplierAdmin is returned. get_all_consumeradmins(Channel) -> Reply Types Channel = #objref Reply = [AdminID] AdminID = long() To get access to all ConsumerAdmin Id's created by the target object, and still alive, this operation could be invoked. get_all_supplieradmins(Channel) -> Reply Types Channel = #objref Reply = [AdminID] AdminID = long() Equal to the operation get_all_consumeradmins/1 but returns a list of all SupplierAdmin object ID's. destroy(Channel) -> ok Types Channel = #objref The destroy operation will terminate the target channel and all associated Admin objects. Ericsson AB cosNotification 1.1.16 CosNotifyChannelAdmin_EventChannel(3erl)
Man Page