Package akka.javasdk.agent
Record Class SessionMessage.AiMessage
- All Implemented Interfaces:
SessionMessage
- Enclosing interface:
SessionMessage
public static record SessionMessage.AiMessage(Instant timestamp, String text, String componentId, List<SessionMessage.ToolCallRequest> toolCallRequests)
extends Record
implements SessionMessage
-
Nested Class Summary
Nested classes/interfaces inherited from interface akka.javasdk.agent.SessionMessage
SessionMessage.AiMessage, SessionMessage.ToolCallRequest, SessionMessage.ToolCallResponse, SessionMessage.UserMessage -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecomponentIdrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intsize()text()Returns the value of thetextrecord component.Returns the value of thetimestamprecord component.Returns the value of thetoolCallRequestsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AiMessage
-
AiMessage
public AiMessage(Instant timestamp, String text, String componentId, List<SessionMessage.ToolCallRequest> toolCallRequests) Creates an instance of aAiMessagerecord class.- Parameters:
timestamp- the value for thetimestamprecord componenttext- the value for thetextrecord componentcomponentId- the value for thecomponentIdrecord componenttoolCallRequests- the value for thetoolCallRequestsrecord component
-
-
Method Details
-
size
public int size()- Specified by:
sizein interfaceSessionMessage
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
timestamp
Returns the value of thetimestamprecord component.- Returns:
- the value of the
timestamprecord component
-
text
Returns the value of thetextrecord component.- Specified by:
textin interfaceSessionMessage- Returns:
- the value of the
textrecord component
-
componentId
Returns the value of thecomponentIdrecord component.- Returns:
- the value of the
componentIdrecord component
-
toolCallRequests
Returns the value of thetoolCallRequestsrecord component.- Returns:
- the value of the
toolCallRequestsrecord component
-