/*
* 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.ConnectionDescription;
An event representing a MongoDB database command.
Since: 3.1
/**
* An event representing a MongoDB database command.
*
* @since 3.1
*/
public abstract class CommandEvent {
private final int requestId;
private final ConnectionDescription connectionDescription;
private final String commandName;
Construct an instance.
Params: - requestId – the request id
- connectionDescription – the connection description
- commandName – the command name
/**
* Construct an instance.
* @param requestId the request id
* @param connectionDescription the connection description
* @param commandName the command name
*/
public CommandEvent(final int requestId, final ConnectionDescription connectionDescription,
final String commandName) {
this.requestId = requestId;
this.connectionDescription = connectionDescription;
this.commandName = commandName;
}
Gets the request identifier
Returns: the request identifier
/**
* Gets the request identifier
*
* @return the request identifier
*/
public int getRequestId() {
return requestId;
}
Gets the description of the connection to which the operation will be sent.
Returns: the connection description
/**
* Gets the description of the connection to which the operation will be sent.
*
* @return the connection description
*/
public ConnectionDescription getConnectionDescription() {
return connectionDescription;
}
Gets the name of the command.
Returns: the command name
/**
* Gets the name of the command.
*
* @return the command name
*/
public String getCommandName() {
return commandName;
}
}