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

SQL Anywhere 12.0.1 » QAnywhere » 如何编写 QAnywhere 客户端应用程序

 

关闭 QAnywhere

完成发送和接收消息后,您可以通过完成以下过程之一来关闭 QAnywhere 消息传递系统。

 ♦ 关闭 QAnywhere (.NET)
  • 停止并关闭 QAnywhere Manager。

    mgr.Stop();
    mgr.Close();
 ♦ 关闭 QAnywhere (C++)
  1. 关闭 QAnywhere Manager。

    mgr->stop();
    mgr->close();
  2. 终止工厂。

    QAnywhereFactory_term();

    此步骤将关闭应用程序的消息传递部分。

 ♦ 关闭 QAnywhere (Java)
  • 停止并关闭 QAnywhere Manager。

    mgr.stop();
    mgr.close();
 另请参见