Interface MessageParser
-
- All Known Implementing Classes:
BGPKeepAliveMessageParser,BGPNotificationMessageParser,BGPOpenMessageParser,BGPRouteRefreshMessageParser,BGPUpdateMessageParser
@NonNullByDefault public interface MessageParserCommon interface for message parser implementation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.opendaylight.yangtools.yang.binding.NotificationparseMessageBody(io.netty.buffer.ByteBuf body, int messageLength, @Nullable PeerSpecificParserConstraint constraint)Parse BGP Message from buffer, potentially applying peer-specific constraints.
-
-
-
Method Detail
-
parseMessageBody
org.opendaylight.yangtools.yang.binding.Notification parseMessageBody(io.netty.buffer.ByteBuf body, int messageLength, @Nullable PeerSpecificParserConstraint constraint) throws BGPDocumentedExceptionParse BGP Message from buffer, potentially applying peer-specific constraints. Implementations are free- Parameters:
body- Encoded BGP message in ByteBuf.messageLength- Length of the BGP message.constraint- Peer specific constraints, implementations may ignore them.- Returns:
- Parsed BGP Message body.
- Throws:
BGPDocumentedException
-
-