-
Notifications
You must be signed in to change notification settings - Fork 0
Queue
Queues are objects that store messages in an application. Xyna Factory can connect to message-oriented middleware in order to send messages to queues or fetch messages from queues. The most prominent examples for this kind of software are IBM's Websphere MQ and Apache's Active MQ.
With this command you can register a queue in Xyna Factory: <syntaxhighlight lang="bash"> ./xynafactory.sh registerqueue -queueType <Queue Type> -connectParameters <Connect Parameters> -externalName <Queue Name> -uniqueName <Xyna Queue Name> </syntaxhighlight> Queue Types and corresponding Connect Parameters:
Queue Type | Connect Parameter |
---|---|
WEBSPHERE_MQ | |
ACTIVE_MQ | |
ORACLE_AQ |
<syntaxhighlight lang="bash"></syntaxhighlight> Get a list of all registered Queues ./xynafactory.sh listqueues
Deregister a Queue ./xynafactory.sh deregisterqueue -uniqueueName <arg> </syntaxhighlight></arg>