Sha256: 97f300c5270ad09f9d51fe442e94ff83cff551b5da7e3aeac645e659a2d89c86
Contents?: true
Size: 1.11 KB
Versions: 7
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true # encoding: utf-8 # Copyright (C) 2021 MongoDB Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. module Mongo class Cursor # This class contains the operation specification for KillCursors. # # Its purpose is to ensure we don't misspell attribute names accidentally. # # @api private class KillSpec def initialize(cursor_id:, coll_name:, db_name:, service_id:) @cursor_id = cursor_id @coll_name = coll_name @db_name = db_name @service_id = service_id end attr_reader :cursor_id, :coll_name, :db_name, :service_id end end end
Version data entries
7 entries across 7 versions & 1 rubygems