DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

ObjectEventNotification(3tlib)


ObjectEventNotification -- register notification function

Synopsis

ObjectEventNotification callbackFunction eventType

Description

ObjectEventNotification is used to register a function that will be called by the SCOadmin framework if an OSA sends any events while it is processing an object request. The function is called with one parameter, which is a BMIP response which can be examined using the Bmip(3tlib) routines.

Arguments


callbackFunction
function which is called if an OSA sends an event of the specified type.

eventType
type of event which will be handled by the callback. The value of eventType can be either ``warning'' or ``notification''.
The significant fields are:

Examples

proc warningEventHandler event {
       echo "An event was sent of type " [BmipResponseActionType event]
       echo "The message was " [BmipResponseActionData event]
       echo "The error stack (if any) was " [BmipResponseErrorStack event]
}

ObjectEventNotification warningEventHandler warning

References

OFEvent(3tlib), Bmip(3tlib)
25 April 2004
© 2004 The SCO Group, Inc. All rights reserved.
UnixWare 7 Release 7.1.4 - 25 April 2004