/*
 * 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.event;

import com.mongodb.connection.ConnectionId;

import java.util.concurrent.TimeUnit;

import static com.mongodb.assertions.Assertions.isTrueArgument;
import static com.mongodb.assertions.Assertions.notNull;

An event for server heartbeat failures.
Since:3.3
/** * An event for server heartbeat failures. * * @since 3.3 */
public final class ServerHeartbeatFailedEvent { private final ConnectionId connectionId; private final long elapsedTimeNanos; private final boolean awaited; private final Throwable throwable;
Construct an instance.
Params:
  • connectionId – the non-null connectionId
  • elapsedTimeNanos – the non-negative elapsed time in nanoseconds
  • throwable – the non-null exception that caused the failure
Deprecated:Prefer ServerHeartbeatFailedEvent(ConnectionId, long, boolean, Throwable)
/** * Construct an instance. * * @param connectionId the non-null connectionId * @param elapsedTimeNanos the non-negative elapsed time in nanoseconds * @param throwable the non-null exception that caused the failure * @deprecated Prefer {@link #ServerHeartbeatFailedEvent(ConnectionId, long, boolean, Throwable)} */
@Deprecated public ServerHeartbeatFailedEvent(final ConnectionId connectionId, final long elapsedTimeNanos, final Throwable throwable) { this(connectionId, elapsedTimeNanos, false, throwable); }
Construct an instance.
Params:
  • connectionId – the non-null connectionId
  • elapsedTimeNanos – the non-negative elapsed time in nanoseconds
  • awaited – true if the response was awaited
  • throwable – the non-null exception that caused the failure
Since:4.1
/** * Construct an instance. * * @param connectionId the non-null connectionId * @param elapsedTimeNanos the non-negative elapsed time in nanoseconds * @param awaited true if the response was awaited * @param throwable the non-null exception that caused the failure * @since 4.1 */
public ServerHeartbeatFailedEvent(final ConnectionId connectionId, final long elapsedTimeNanos, final boolean awaited, final Throwable throwable) { this.connectionId = notNull("connectionId", connectionId); this.awaited = awaited; isTrueArgument("elapsed time is not negative", elapsedTimeNanos >= 0); this.elapsedTimeNanos = elapsedTimeNanos; this.throwable = notNull("throwable", throwable); }
Gets the connectionId.
Returns:the connectionId
/** * Gets the connectionId. * * @return the connectionId */
public ConnectionId getConnectionId() { return connectionId; }
Gets the elapsed time in the given time unit.
Params:
  • timeUnit – the non-null timeUnit
Returns:the elapsed time in the given time unit
/** * Gets the elapsed time in the given time unit. * * @param timeUnit the non-null timeUnit * * @return the elapsed time in the given time unit */
public long getElapsedTime(final TimeUnit timeUnit) { return timeUnit.convert(elapsedTimeNanos, TimeUnit.NANOSECONDS); }
Gets whether the heartbeat was awaited. If true, then getElapsedTime(TimeUnit) reflects the sum of the round trip time to the server and the time that the server waited before sending a response.
Returns:whether the response was awaited
Since:4.1
@mongodb.server.release4.4
/** * Gets whether the heartbeat was awaited. If true, then {@link #getElapsedTime(TimeUnit)} reflects the sum of the round trip time * to the server and the time that the server waited before sending a response. * * @return whether the response was awaited * @since 4.1 * @mongodb.server.release 4.4 */
public boolean isAwaited() { return awaited; }
Gets the exceptions that caused the failure
Returns:the exception
/** * Gets the exceptions that caused the failure * * @return the exception */
public Throwable getThrowable() { return throwable; } @Override public String toString() { return "ServerHeartbeatFailedEvent{" + "connectionId=" + connectionId + ", elapsedTimeNanos=" + elapsedTimeNanos + ", awaited=" + awaited + ", throwable=" + throwable + "} " + super.toString(); } }