| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- /* Copyright 2010-present 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.
- */
- using System;
- using System.Collections.Generic;
- using System.Threading;
- using System.Threading.Tasks;
- using MongoDB.Bson;
- using MongoDB.Driver.Core.Clusters;
- namespace MongoDB.Driver
- {
- /// <summary>
- /// Base class for implementors of <see cref="IMongoClient"/>.
- /// </summary>
- public abstract class MongoClientBase : IMongoClient
- {
- /// <inheritdoc />
- public abstract ICluster Cluster { get; }
- /// <inheritdoc />
- public abstract MongoClientSettings Settings { get; }
- /// <inheritdoc />
- public virtual void DropDatabase(string name, CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual void DropDatabase(IClientSessionHandle session, string name, CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public abstract Task DropDatabaseAsync(string name, CancellationToken cancellationToken = default(CancellationToken));
- /// <inheritdoc />
- public virtual Task DropDatabaseAsync(IClientSessionHandle session, string name, CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public abstract IMongoDatabase GetDatabase(string name, MongoDatabaseSettings settings = null);
- /// <inheritdoc />
- public virtual IAsyncCursor<string> ListDatabaseNames(
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual IAsyncCursor<string> ListDatabaseNames(
- IClientSessionHandle session,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual Task<IAsyncCursor<string>> ListDatabaseNamesAsync(
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual Task<IAsyncCursor<string>> ListDatabaseNamesAsync(
- IClientSessionHandle session,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual IAsyncCursor<BsonDocument> ListDatabases(CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual IAsyncCursor<BsonDocument> ListDatabases(
- ListDatabasesOptions options,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual IAsyncCursor<BsonDocument> ListDatabases(
- IClientSessionHandle session,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual IAsyncCursor<BsonDocument> ListDatabases(
- IClientSessionHandle session,
- ListDatabasesOptions options,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public abstract Task<IAsyncCursor<BsonDocument>> ListDatabasesAsync(CancellationToken cancellationToken = default(CancellationToken));
- /// <inheritdoc />
- public virtual Task<IAsyncCursor<BsonDocument>> ListDatabasesAsync(
- ListDatabasesOptions options,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual Task<IAsyncCursor<BsonDocument>> ListDatabasesAsync(IClientSessionHandle session, CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual Task<IAsyncCursor<BsonDocument>> ListDatabasesAsync(
- IClientSessionHandle session,
- ListDatabasesOptions options,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual IClientSessionHandle StartSession(ClientSessionOptions options = null, CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual Task<IClientSessionHandle> StartSessionAsync(ClientSessionOptions options = null, CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual IAsyncCursor<TResult> Watch<TResult>(
- PipelineDefinition<ChangeStreamDocument<BsonDocument>, TResult> pipeline,
- ChangeStreamOptions options = null,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException(); // implemented by subclasses
- }
- /// <inheritdoc />
- public virtual IAsyncCursor<TResult> Watch<TResult>(
- IClientSessionHandle session,
- PipelineDefinition<ChangeStreamDocument<BsonDocument>, TResult> pipeline,
- ChangeStreamOptions options = null,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException(); // implemented by subclasses
- }
- /// <inheritdoc />
- public virtual Task<IAsyncCursor<TResult>> WatchAsync<TResult>(
- PipelineDefinition<ChangeStreamDocument<BsonDocument>, TResult> pipeline,
- ChangeStreamOptions options = null,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException(); // implemented by subclasses
- }
- /// <inheritdoc />
- public virtual Task<IAsyncCursor<TResult>> WatchAsync<TResult>(
- IClientSessionHandle session,
- PipelineDefinition<ChangeStreamDocument<BsonDocument>, TResult> pipeline,
- ChangeStreamOptions options = null,
- CancellationToken cancellationToken = default(CancellationToken))
- {
- throw new NotImplementedException(); // implemented by subclasses
- }
- /// <inheritdoc />
- public virtual IMongoClient WithReadConcern(ReadConcern readConcern)
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual IMongoClient WithReadPreference(ReadPreference readPreference)
- {
- throw new NotImplementedException();
- }
- /// <inheritdoc />
- public virtual IMongoClient WithWriteConcern(WriteConcern writeConcern)
- {
- throw new NotImplementedException();
- }
- }
- }
|