/* Copyright 2017-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 MongoDB.Bson;
namespace MongoDB.Driver
{
///
/// The interface for a server session.
///
public interface IServerSession : IDisposable
{
// properties
///
/// Gets the session Id.
///
///
/// The session Id.
///
BsonDocument Id { get; }
///
/// Gets the time this server session was last used (in UTC).
///
///
/// The time this server session was last used (in UTC).
///
DateTime? LastUsedAt { get; }
///
/// Gets the next transaction number.
///
/// The transaction number.
[Obsolete("Let the driver handle when to advance the transaction number.")]
long AdvanceTransactionNumber();
// methods
///
/// Called by the driver when the session is used (i.e. sent to the server).
///
[Obsolete("Let the driver handle tracking when the session was last used.")]
void WasUsed();
}
}