Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (Français) » QAnywhere » QAnywhere Reference » QAnywhere .NET API reference » QAnywhere .NET API for clients (.NET 2.0) » QAManagerBase interface

 

Start method

Starts the QAManagerBase for receiving incoming messages in message listeners.

Syntax
Visual Basic
Public Sub Start()
C#
public void Start();
Remarks

The QAManagerBase does not need to be started if there are no message listeners set, that is, if messages are received with the GetMessage methods. The use of the GetMessage method and message listeners for receiving messages is not recommended. You should use one or the other of the asynchronous (message listener) or synchronous (GetMessage) models. Any calls to Start() beyond the first without an intervening QAManagerBase.Stop() call are ignored.

Exceptions
  • QAException class - Thrown if there is a problem starting the QAManagerBase instance.

See also