Package org.jgroups.util
Class Buffer.NumDeliverable
- java.lang.Object
-
- org.jgroups.util.Buffer.NumDeliverable
-
- All Implemented Interfaces:
Buffer.Visitor<T>
protected class Buffer.NumDeliverable extends java.lang.Object implements Buffer.Visitor<T>
-
-
Field Summary
Fields Modifier and Type Field Description protected int
num_deliverable
-
Constructor Summary
Constructors Modifier Constructor Description protected
NumDeliverable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getResult()
boolean
visit(long seqno, T element)
Iteration over the table, used byDynamicBuffer.forEach(long, long, Buffer.Visitor, boolean)
.
-
-
-
Method Detail
-
getResult
public int getResult()
-
visit
public boolean visit(long seqno, T element)
Description copied from interface:Buffer.Visitor
Iteration over the table, used byDynamicBuffer.forEach(long, long, Buffer.Visitor, boolean)
.- Specified by:
visit
in interfaceBuffer.Visitor<T>
- Parameters:
seqno
- The current seqnoelement
- The element at matrix[row][column]- Returns:
- True if we should continue the iteration, false if we should break out of the iteration
-
-