Record Class NBCommandAssembly.CommandInvocation
java.lang.Object
java.lang.Record
io.nosqlbench.engine.core.lifecycle.session.NBCommandAssembly.CommandInvocation
- Enclosing class:
NBCommandAssembly
public static record NBCommandAssembly.CommandInvocation(NBInvokableCommand command, NBCommandParams params, String containerName)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionCommandInvocation(NBInvokableCommand command, NBCommandParams params, String containerName) Creates an instance of aCommandInvocationrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncommand()Returns the value of thecommandrecord component.Returns the value of thecontainerNamerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.params()Returns the value of theparamsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CommandInvocation
Creates an instance of aCommandInvocationrecord class.- Parameters:
command- the value for thecommandrecord componentparams- the value for theparamsrecord componentcontainerName- the value for thecontainerNamerecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
command
Returns the value of thecommandrecord component.- Returns:
- the value of the
commandrecord component
-
params
Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-
containerName
Returns the value of thecontainerNamerecord component.- Returns:
- the value of the
containerNamerecord component
-