本文整理汇总了Java中org.openflow.protocol.action.OFAction.MINIMUM_LENGTH属性的典型用法代码示例。如果您正苦于以下问题:Java OFAction.MINIMUM_LENGTH属性的具体用法?Java OFAction.MINIMUM_LENGTH怎么用?Java OFAction.MINIMUM_LENGTH使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.openflow.protocol.action.OFAction
的用法示例。
在下文中一共展示了OFAction.MINIMUM_LENGTH属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parseActions
@Override
public List<OFAction> parseActions(ChannelBuffer data, int length, int limit) {
List<OFAction> results = new ArrayList<OFAction>();
OFAction demux = new OFAction();
OFAction ofa;
int end = data.readerIndex() + length;
while (limit == 0 || results.size() <= limit) {
if ((data.readableBytes() < OFAction.MINIMUM_LENGTH ||
(data.readerIndex() + OFAction.MINIMUM_LENGTH) > end))
return results;
data.markReaderIndex();
demux.readFrom(data);
data.resetReaderIndex();
if ((demux.getLengthU() > data.readableBytes() ||
(data.readerIndex() + demux.getLengthU()) > end))
return results;
ofa = parseActionOne(demux.getType(), data);
results.add(ofa);
}
return results;
}
示例2: parseActions
@Override
public List<OFAction> parseActions(ChannelBuffer data, int length, int limit) {
List<OFAction> results = new ArrayList<OFAction>();
OFAction demux = new OFAction();
OFAction ofa;
int end = data.readerIndex() + length;
while (limit == 0 || results.size() <= limit) {
if ((data.readableBytes() < OFAction.MINIMUM_LENGTH ||
(data.readerIndex() + OFAction.MINIMUM_LENGTH) > end))
return results;
data.markReaderIndex();
demux.readFrom(data);
data.resetReaderIndex();
if ((demux.getLengthU() > data.readableBytes() ||
(data.readerIndex() + demux.getLengthU()) > end))
return results;
ofa = getAction(demux.getType());
ofa.readFrom(data);
if (OFAction.class.equals(ofa.getClass())) {
// advance the position for un-implemented messages
data.readerIndex(data.readerIndex()+(ofa.getLengthU() -
OFAction.MINIMUM_LENGTH));
}
results.add(ofa);
}
return results;
}
开发者ID:vishalshubham,项目名称:Multipath-Hedera-system-in-Floodlight-controller,代码行数:32,代码来源:BasicFactory.java
示例3: parseActions
@Override
public List<OFAction> parseActions(final ChannelBuffer data,
final int length, final int limit) {
final List<OFAction> results = new ArrayList<OFAction>();
final OFAction demux = new OFAction();
OFAction ofa;
final int end = data.readerIndex() + length;
while (limit == 0 || results.size() <= limit) {
if (data.readableBytes() < OFAction.MINIMUM_LENGTH
|| data.readerIndex() + OFAction.MINIMUM_LENGTH > end) {
return results;
}
data.markReaderIndex();
demux.readFrom(data);
data.resetReaderIndex();
if (demux.getLengthU() > data.readableBytes()
|| data.readerIndex() + demux.getLengthU() > end) {
return results;
}
ofa = this.parseActionOne(demux.getType(), data);
results.add(ofa);
}
return results;
}