All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mongodb.internal.connection.ClusterClockAdvancingSessionContext Maven / Gradle / Ivy

Go to download

The Java operations layer for the MongoDB Java Driver. Third parties can ' + 'wrap this layer to provide custom higher-level APIs

There is a newer version: 5.3.0-beta0
Show newest version
/*
 * Copyright 2008-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.
 */

package com.mongodb.internal.connection;

import com.mongodb.ReadConcern;
import com.mongodb.internal.session.SessionContext;
import com.mongodb.lang.Nullable;
import org.bson.BsonDocument;
import org.bson.BsonTimestamp;

/**
 * 

This class is not part of the public API and may be removed or changed at any time

*/ public final class ClusterClockAdvancingSessionContext implements SessionContext { private final SessionContext wrapped; private final ClusterClock clusterClock; public ClusterClockAdvancingSessionContext(final SessionContext wrapped, final ClusterClock clusterClock) { this.wrapped = wrapped; this.clusterClock = clusterClock; } @Override public boolean hasSession() { return wrapped.hasSession(); } @Override public boolean isImplicitSession() { return wrapped.isImplicitSession(); } @Override public BsonDocument getSessionId() { return wrapped.getSessionId(); } @Override public boolean isCausallyConsistent() { return wrapped.isCausallyConsistent(); } @Override public long getTransactionNumber() { return wrapped.getTransactionNumber(); } @Override public long advanceTransactionNumber() { return wrapped.advanceTransactionNumber(); } @Override public boolean notifyMessageSent() { return wrapped.notifyMessageSent(); } @Override public BsonTimestamp getOperationTime() { return wrapped.getOperationTime(); } @Override public void advanceOperationTime(@Nullable final BsonTimestamp operationTime) { wrapped.advanceOperationTime(operationTime); } @Override public BsonDocument getClusterTime() { return clusterClock.greaterOf(wrapped.getClusterTime()); } @Override public void advanceClusterTime(@Nullable final BsonDocument clusterTime) { wrapped.advanceClusterTime(clusterTime); clusterClock.advance(clusterTime); } @Override public boolean isSnapshot() { return wrapped.isSnapshot(); } @Override public void setSnapshotTimestamp(@Nullable final BsonTimestamp snapshotTimestamp) { wrapped.setSnapshotTimestamp(snapshotTimestamp); } @Override @Nullable public BsonTimestamp getSnapshotTimestamp() { return wrapped.getSnapshotTimestamp(); } @Override public boolean hasActiveTransaction() { return wrapped.hasActiveTransaction(); } @Override public ReadConcern getReadConcern() { return wrapped.getReadConcern(); } @Override public void setRecoveryToken(final BsonDocument recoveryToken) { wrapped.setRecoveryToken(recoveryToken); } @Override public void clearTransactionContext() { wrapped.clearTransactionContext(); } @Override public void markSessionDirty() { wrapped.markSessionDirty(); } @Override public boolean isSessionMarkedDirty() { return wrapped.isSessionMarkedDirty(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy