The operations which can be performed on the Queue Manager and the objects within that. More...

Enumerations

enum  som_qmcontrol {
  SOM_QM_ABORT, SOM_QM_SHUTDOWN, SOM_QM_RESTART, SOM_QM_REREADQUEUE,
  SOM_QM_DISABLE_SUBMISSION, SOM_QM_ENABLE_SUBMISSION, SOM_QM_DISABLE_ALL, SOM_QM_ENABLE_ALL,
  SOM_QM_INCREASE_MAXCHANS, SOM_QM_DECREASE_MAXCHANS, SOM_QM_LOAD_CONFIG
}
 
enum  som_qocontrol {
  SOM_QO_STOP, SOM_QO_START, SOM_QO_DISABLE_IN, SOM_QO_ENABLE_IN,
  SOM_QO_DELAY_CLEAR, SOM_QO_DELAY_SET, SOM_QO_MINIMISE, SOM_QO_DELETE,
  SOM_QO_CONNECT, SOM_QO_DISCONNECT, SOM_QO_TIMEOUT, SOM_QO_NONDELIVER,
  SOM_QO_REDIRECT, SOM_QO_REPROCESS, SOM_QO_RELOAD, SOM_QO_ABORT,
  SOM_QO_PAUSE, SOM_QO_RESUME
}
 

Functions

int SOMQueueControl (struct SOMSession *session, enum som_qmcontrol control, void *ophandle, int async)
 Perform control operation on Queue Manager. More...
 
int SOMQueueStatus (struct SOMSession *session, void *ophandle, int async)
 Get current Queue Manager status. More...
 
int SOMQchannelControl (struct SOMSession *session, struct SOMQselector *selector, enum som_qocontrol control, const char *data, int datalen, void *ophandle, int async)
 Perform control operation on Queue Channel. More...
 
int SOMQchannelRead (struct SOMSession *session, struct SOMQselector *selector, void *ophandle, int async)
 Perform control operation on Queue Channel. More...
 
int SOMQmtaControl (struct SOMSession *session, struct SOMQselector *selector, enum som_qocontrol control, const char *data, int datalen, void *ophandle, int async)
 Perform control operation on Queue Mta. More...
 
int SOMQmtaRead (struct SOMSession *session, struct SOMQselector *selector, int limit, void *ophandle, int async)
 Perform control operation on Queue Mta. More...
 
int SOMQmessageControl (struct SOMSession *session, struct SOMQselector *selector, enum som_qocontrol control, const char *data, int datalen, void *ophandle, int async)
 Perform control operation on Queue Message. More...
 
int SOMQmessageRead (struct SOMSession *session, struct SOMQselector *selector, int limit, void *ophandle, int async)
 Perform control operation on Queue Message. More...
 
int SOMQmessageSearch (struct SOMSession *session, struct SOMQfilter *filter, void *ophandle, int async)
 Perform control operation on Queue Message. More...
 

Detailed Description

The operations which can be performed on the Queue Manager and the objects within that.

Enumeration Type Documentation

◆ som_qmcontrol

Operation codes for Queue Manager Operations

Enumerator
SOM_QM_ABORT 

Terminate Queue Manager immediately

SOM_QM_SHUTDOWN 

Graceful shutdown of Queue Manager

SOM_QM_RESTART 

Stop and restart Queue Manager

SOM_QM_REREADQUEUE 

Reread queue from disk

SOM_QM_DISABLE_SUBMISSION 

Disable submission

SOM_QM_ENABLE_SUBMISSION 

Enable submission

SOM_QM_DISABLE_ALL 

Disable all channels

SOM_QM_ENABLE_ALL 

Enable all channels

SOM_QM_INCREASE_MAXCHANS 

Increase by one the processing limit

SOM_QM_DECREASE_MAXCHANS 

Decrease by one the processing limit

SOM_QM_LOAD_CONFIG 

Load configuration if changed

Definition at line 591 of file queue.h.

◆ som_qocontrol

Operation codes for operations on Channels, MTAs and Messages

Enumerator
SOM_QO_STOP 

Disable the object

SOM_QO_START 

Enable the object

SOM_QO_DISABLE_IN 

Disable inbound connections

SOM_QO_ENABLE_IN 

Enable inbound connections

SOM_QO_DELAY_CLEAR 

Clear any delay on the object

SOM_QO_DELAY_SET 

Delay processing until given time. Requires time in UTC format

SOM_QO_MINIMISE 

Set/Clear minimum priority on channel If no data is specified, resets the state Data should be: 'priority'[/['start-time'][/'stop-time']] where the priority can be a name or a number, and the start/stop date-times are in the format YYYYMMDDHHMMSS<zone>.

SOM_QO_DELETE 

Delete the message or MTA

SOM_QO_CONNECT 

Connect MTA

SOM_QO_DISCONNECT 

Disconnect MTA

SOM_QO_TIMEOUT 

Timeout the message

SOM_QO_NONDELIVER 

Non-deliver the message. Requires DSN code and optional text info.

SOM_QO_REDIRECT 

Redirect a recipient of the message

SOM_QO_REPROCESS 

Reprocess the message's recipient routing information

SOM_QO_RELOAD 

Reload information from queue to manager

SOM_QO_ABORT 

Abort processing of message

SOM_QO_PAUSE 

Pause processing of message

SOM_QO_RESUME 

Resume processing of message

Definition at line 606 of file queue.h.

Function Documentation

◆ SOMQueueControl()

int SOMQueueControl ( struct SOMSession session,
enum som_qmcontrol  control,
void *  ophandle,
int  async 
)

Perform control operation on Queue Manager.

Parameters
session[in] Pointer to address of session object
control[in] Enumerated value indicating the operation
ophandle[in] Value passed to callback
async[in] Operation is asynchronous if TRUE
Returns
zero on success; non-zero on error

◆ SOMQueueStatus()

int SOMQueueStatus ( struct SOMSession session,
void *  ophandle,
int  async 
)

Get current Queue Manager status.

Parameters
session[in] Pointer to address of session object
ophandle[in] Value passed to callback
async[in] Operation is asynchronous if TRUE
Returns
zero on success; non-zero on error

After a successful return, or in the callback routine if async., the manager data can be retrieved via the session object using SOMQmanagerGetStrParam and SOMQmanagerGetIntParam

◆ SOMQchannelControl()

int SOMQchannelControl ( struct SOMSession session,
struct SOMQselector *  selector,
enum som_qocontrol  control,
const char *  data,
int  datalen,
void *  ophandle,
int  async 
)

Perform control operation on Queue Channel.

Parameters
session[in] Pointer to address of session object
selector[in] Pointer to selector which selects the channel(s)
control[in] Enumerated value indicating the operation
data[in] Pointer to value used for some operations
datalen[in] Length of data. Can be -1 if data is NUL terminated
ophandle[in] Value passed to callback
async[in] Operation is asynchronous if TRUE
Returns
zero on success; non-zero on error

Channel data is returned via the callback for the channels affected by this operation.

◆ SOMQchannelRead()

int SOMQchannelRead ( struct SOMSession session,
struct SOMQselector *  selector,
void *  ophandle,
int  async 
)

Perform control operation on Queue Channel.

Parameters
session[in] Pointer to address of session object
selector[in] Pointer to selector which selects the channel(s)
ophandle[in] Value passed to callback
async[in] Operation is asynchronous if TRUE
Returns
zero on success; non-zero on error

Channel data is returned via the callback for the channels selected by this operation.

◆ SOMQmtaControl()

int SOMQmtaControl ( struct SOMSession session,
struct SOMQselector *  selector,
enum som_qocontrol  control,
const char *  data,
int  datalen,
void *  ophandle,
int  async 
)

Perform control operation on Queue Mta.

Parameters
session[in] Pointer to address of session object
selector[in] Pointer to selector which selects the mta(s)
control[in] Enumerated value indicating the operation
data[in] Pointer to value used for some operations
datalen[in] Length of data. Can be -1 if data is NUL terminated
ophandle[in] Value passed to callback
async[in] Operation is asynchronous if TRUE
Returns
zero on success; non-zero on error

Mta data is returned via the callback for the mtas affected by this operation.

◆ SOMQmtaRead()

int SOMQmtaRead ( struct SOMSession session,
struct SOMQselector *  selector,
int  limit,
void *  ophandle,
int  async 
)

Perform control operation on Queue Mta.

Parameters
session[in] Pointer to address of session object
selector[in] Pointer to selector which selects the mta(s)
limit[in] Limit on number of MTAs returned
ophandle[in] Value passed to callback
async[in] Operation is asynchronous if TRUE
Returns
zero on success; non-zero on error

Mta data is returned via the callback for the mtas selected by this operation.

If limit is zero, there is no limit. If a limit is set, then if more would be returned, then the operation returns an error, but MTAs are reported via the call-back.

◆ SOMQmessageControl()

int SOMQmessageControl ( struct SOMSession session,
struct SOMQselector *  selector,
enum som_qocontrol  control,
const char *  data,
int  datalen,
void *  ophandle,
int  async 
)

Perform control operation on Queue Message.

Parameters
session[in] Pointer to address of session object
selector[in] Pointer to selector which selects the message(s)
control[in] Enumerated value indicating the operation
data[in] Pointer to value used for some operations
datalen[in] Length of data. Can be -1 if data is NUL terminated
ophandle[in] Value passed to callback
async[in] Operation is asynchronous if TRUE
Returns
zero on success; non-zero on error

Message data is returned via the callback for the messages affected by this operation.

◆ SOMQmessageRead()

int SOMQmessageRead ( struct SOMSession session,
struct SOMQselector *  selector,
int  limit,
void *  ophandle,
int  async 
)

Perform control operation on Queue Message.

Parameters
session[in] Pointer to address of session object
selector[in] Pointer to selector which selects the message(s)
limit[in] Maximum number of messages to return
ophandle[in] Value passed to callback
async[in] Operation is asynchronous if TRUE
Returns
zero on success; non-zero on error

Message data is returned via the callback for the messages selected by this operation.

◆ SOMQmessageSearch()

int SOMQmessageSearch ( struct SOMSession session,
struct SOMQfilter *  filter,
void *  ophandle,
int  async 
)

Perform control operation on Queue Message.

Parameters
session[in] Pointer to address of session object
filter[in] Pointer to filter chain
ophandle[in] Value passed to callback
async[in] Operation is asynchronous if TRUE
Returns
zero on success; non-zero on error

Message data is returned via the callback for the messages selected by this operation.

@ SOM_QM_ENABLE_ALL
Definition: queue.h:599
@ SOM_QO_RESUME
Definition: queue.h:635
@ SOM_QO_RELOAD
Definition: queue.h:632
@ SOM_QO_START
Definition: queue.h:608
@ SOM_QO_DELAY_SET
Definition: queue.h:612
@ SOM_QM_INCREASE_MAXCHANS
Definition: queue.h:600
@ SOM_QM_REREADQUEUE
Definition: queue.h:595
@ SOM_QO_REPROCESS
Definition: queue.h:631
@ SOM_QM_ENABLE_SUBMISSION
Definition: queue.h:597
@ SOM_QO_DISABLE_IN
Definition: queue.h:609
@ SOM_QO_ABORT
Definition: queue.h:633
@ SOM_QO_DELETE
Definition: queue.h:623
@ SOM_QM_DISABLE_SUBMISSION
Definition: queue.h:596
@ SOM_QO_REDIRECT
Definition: queue.h:630
@ SOM_QO_MINIMISE
Definition: queue.h:615
@ SOM_QO_DISCONNECT
Definition: queue.h:625
@ SOM_QO_TIMEOUT
Definition: queue.h:626
@ SOM_QM_LOAD_CONFIG
Definition: queue.h:602
@ SOM_QO_NONDELIVER
Definition: queue.h:627
@ SOM_QM_DECREASE_MAXCHANS
Definition: queue.h:601
@ SOM_QM_RESTART
Definition: queue.h:594
@ SOM_QM_SHUTDOWN
Definition: queue.h:593
@ SOM_QO_PAUSE
Definition: queue.h:634
@ SOM_QO_CONNECT
Definition: queue.h:624
@ SOM_QO_DELAY_CLEAR
Definition: queue.h:611
@ SOM_QO_ENABLE_IN
Definition: queue.h:610
@ SOM_QM_DISABLE_ALL
Definition: queue.h:598
@ SOM_QM_ABORT
Definition: queue.h:592
@ SOM_QO_STOP
Definition: queue.h:607

All rights reserved © 2002 - 2024 Isode Ltd.