Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
この Mobile Link サーバーの ServerContext を返します。
ServerContext DBConnectionContext.getServerContext()
Mobile Link サーバーコンテキスト。
次の例は、DBConnectionContext の ServerContext のインスタンスを取得する方法を示します。この例は、_cc という DBConnectionContext インスタンスがあることを前提としています。
// A method that uses a ServerContext instance to shut down the server public void shutDownServer() { ServerContext context = _cc.getServerContext(); context.shutdown(); }