Previous Page | Next Page

MSMQ Call Routines

MSMQFREE



Frees a SAS internal handle, thereby releasing its resources.
Syntax
Arguments
Example

Syntax

CALL MSMQFREE(handle);

Arguments

handle

Numeric, input

Specifies a SAS internal handle that is obtained from a previous CALL routine. The following CALL routines return handles that can be used as input to this routine (the type of handle is also shown after the CALL routine name):

  • MSMQCREATEQUEUE - qid (format name representation)

  • MSMQPATHTOFORMAT - qid

  • MSMQINSTTOFORMAT - qid

  • MSMQHNDLTOFORMAT - qid

  • MSMQMAP - hMap

  • MSMQSETPARMS - hData


Example

This example frees a handle and its resources.

CALL MSMQFREE(Handle);

Previous Page | Next Page | Top of Page