public interface DelayedMulticastAnnouncementDecoder extends MulticastAnnouncementDecoder
Modifier and Type | Method and Description |
---|---|
MulticastAnnouncement |
decodeMulticastAnnouncement(ByteBuffer buf,
InvocationConstraints constraints,
boolean delayConstraintCheck)
Decodes the multicast announcement data contained in the given buffer in
a manner that satisfies the specified absolute constraints, returning a
MulticastAnnouncement instance that contains the decoded data,
with constraint checking optionally delayed. |
decodeMulticastAnnouncement
getFormatName
MulticastAnnouncement decodeMulticastAnnouncement(ByteBuffer buf, InvocationConstraints constraints, boolean delayConstraintCheck) throws IOException
MulticastAnnouncement
instance that contains the decoded data,
with constraint checking optionally delayed.
null
constraints are considered equivalent to empty
constraints. Constraint checking may be delayed using the
delayConstraintCheck
flag.
If the delayConstraintCheck
flag is true
,
the method behaves as follows:
MulticastAnnouncement
's
checkConstraints
method must be invoked to complete checking of all the constraints.
MulticastAnnouncement
can be invoked are always
checked before this method returns.delayConstraintCheck
is false
,
all the specified constraints are checked before this method returns.buf
- a buffer containing the packet data to decode. The contents
of buf
may be used on subsequent invocations of the returned
MulticastAnnouncement
instance's
checkConstraints
method. The caller must ensure that the
contents of buf
are not modified before invocation of the
checkConstraints
method. Additionally, multicast
announcement data must begin at position zero of buf
.constraints
- the constraints to apply when decoding the data, or
null
delayConstraintCheck
- flag to control delayed constraint checkingIOException
- if an error occurs in interpreting the dataUnsupportedConstraintException
- if unable to satisfy the
specified constraintsSecurityException
- if the given constraints cannot be satisfied
due to insufficient caller permissionsNullPointerException
- if buf
is null
Copyright 2007-2013, multiple authors.
Licensed under the Apache License, Version 2.0, see the NOTICE file for attributions.