Examples of KillCursors


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
Copyright © 2018 www.massapi.com. 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.