Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

events(1) [debian man page]

EVENTS(1)																 EVENTS(1)

NAME
events - stream events from or to a CORBA EventChannel SYNOPSIS
events [-n channel-name] [-s] [-h] [-ORBparameter value] [channel-uri] DESCRIPTION
events streams events from an event channel to standard output, or (-s) from standard input to an event channel. Events are streamed in raw binary form, accompanied by a timestamp. When the stream is played back into a channel, the timestamps are used the replicate the original delays between the messages. The main use for this command it to record sets of events and play them back later for testing. Recording example: events corbaname::#EventChannel > test.dat Playback example: events -s corbaname::#EventChannel < test.dat OPTIONS
-n channel-name The CORBA Name Service name used to look up the 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 -s Supply mode. Read events from standard input. -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) 2004,2005 Alex Tingle. 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. EVENTS(1)

Check Out this Related Man Page

CosNotifyChannelAdmin_EventChannelFactory(3erl) 	     Erlang Module Definition		   CosNotifyChannelAdmin_EventChannelFactory(3erl)

NAME
CosNotifyChannelAdmin_EventChannelFactory - This module implements the OMG CosNotifyChannelAdmin::EventChannelFactory interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosNotification/include/*.hrl"). EXPORTS
create_channel(ChannelFactory, InitialQoS, InitialAdmin) -> Return Types ChannelFactory = #objref InitialQoS = CosNotification::QoSProperties InitialAdmin = CosNotification::AdminProperties Return = {EventChannel, ChannelID} EventChannel = #objref ChannelID = long() This operation creates a new event channel. Along with the channel reference an id is returned which can be used when invoking other operations exported by this module. The Quality of Service argument supplied will be inherited by objects created by the channel. For more information about QoS settings see the User's Guide . If no QoS- and/or Admin-properties are supplied (i.e. empty list), the default settings will be used. For more information, see the User's Guide. get_all_channels(ChannelFactory) -> ChannelIDSeq Types ChannelFactory = #objref ChannelIDSeq = [long()] This operation returns a id sequence of all channel's created by this ChannelFactory. get_event_channel(ChannelFactory, ChannelID) -> Return Types ChannelFactory = #objref ChannelID = long() Retrurn = EventChannel | {'EXCEPTION', #'CosNotifyChannelAdmin_ChannelNotFound'{}} EventChannel = #objref This operation returns the EventChannel associated with the given id. If no channel is associated with the id, i.e., never existed or have been terminated, an exception is raised. Ericsson AB cosNotification 1.1.16 CosNotifyChannelAdmin_EventChannelFactory(3erl)
Man Page