
org.littleshoot.stun.stack.message.VisitableStunMessage Maven / Gradle / Ivy
The newest version!
package org.littleshoot.stun.stack.message;
/**
* Interface for STUN messages that are visitable by visitors.
*/
public interface VisitableStunMessage {
/**
* Accepts the specified visitor class.
*
* @param The type the visitor will return.
* @param visitor The visitor to accept.
* @return The return value of the visitor.
*/
T accept(StunMessageVisitor visitor);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy