Package jp.ameba.mongo.protocol

Examples of jp.ameba.mongo.protocol.KillCursors


   * リソースの解放を実施します。
   */
  public void close() {
    if (!closed) {
      if (lastResult != null) {
        conn.killCursors(new KillCursors(lastResult.getCursorId()));
      }
      closed = true;
    }
  }
View Full Code Here

TOP

Related Classes of jp.ameba.mongo.protocol.KillCursors

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.