Record Class MessageHandlerResult
java.lang.Object
java.lang.Record
org.apache.tomcat.websocket.MessageHandlerResult
- Record Components:
handler- the message handlertype- the result type
public record MessageHandlerResult(MessageHandler handler, MessageHandlerResultType type)
extends Record
Result of a message handler operation.
-
Constructor Summary
ConstructorsConstructorDescriptionMessageHandlerResult(MessageHandler handler, MessageHandlerResultType type) Creates an instance of aMessageHandlerResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.handler()Returns the value of thehandlerrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Constructor Details
-
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). -
handler
-
type
-