SAS 9.1.3 Integration Technologies » Developer's Guide


Publish Event Interface
CALL Routines
EVENT_BEGIN
EVENT_BODY
EVENT_PUBLISH
EVENT_END
XML Specification for Generic Events
XML Specification for SASPackage Events
Examples of Published Events
Publishing Framework

EVENT_END

Frees all resources associated with the specified event.

Syntax

CALL EVENT_END(eventId, rc);

eventId
Numeric, input.
Identifies the event that is to be published.

rc
Numeric, output.
Receives a return code.

Details

Freeing resources closes all queues and files that are associated with the specified event.

Example

The following example frees all resources that are associated with the specified event:

   CALL EVENT_END(eventId,rc);

See Also