Package dev.tachyonmcp.core.protocol
Record Class ProtocolRequestMapper.ToolCallRequest
java.lang.Object
java.lang.Record
dev.tachyonmcp.core.protocol.ProtocolRequestMapper.ToolCallRequest
- Record Components:
request- the tool name and deserialized argumentstaskAugmented- whether the client requested task-augmented (async) executiontaskTtl- requested task retention duration, ornullto use the server default
- Enclosing interface:
ProtocolRequestMapper
public static record ProtocolRequestMapper.ToolCallRequest(ToolRequest request, boolean taskAugmented, @Nullable Duration taskTtl)
extends Record
A tool call request.
-
Constructor Summary
ConstructorsConstructorDescriptionToolCallRequest(ToolRequest request, boolean taskAugmented, @Nullable Duration taskTtl) Creates an instance of aToolCallRequestrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.request()Returns the value of therequestrecord component.booleanReturns the value of thetaskAugmentedrecord component.@Nullable DurationtaskTtl()Returns the value of thetaskTtlrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ToolCallRequest
Creates an instance of aToolCallRequestrecord class.- Parameters:
request- the value for therequestrecord componenttaskAugmented- the value for thetaskAugmentedrecord componenttaskTtl- the value for thetaskTtlrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
request
Returns the value of therequestrecord component.- Returns:
- the value of the
requestrecord component
-
taskAugmented
public boolean taskAugmented()Returns the value of thetaskAugmentedrecord component.- Returns:
- the value of the
taskAugmentedrecord component
-
taskTtl
Returns the value of thetaskTtlrecord component.- Returns:
- the value of the
taskTtlrecord component
-