本文整理汇总了Java中org.sdnplatform.sync.error.SyncRuntimeException类的典型用法代码示例。如果您正苦于以下问题:Java SyncRuntimeException类的具体用法?Java SyncRuntimeException怎么用?Java SyncRuntimeException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SyncRuntimeException类属于org.sdnplatform.sync.error包,在下文中一共展示了SyncRuntimeException类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: RemoteIterator
import org.sdnplatform.sync.error.SyncRuntimeException; //导入依赖的package包/类
public RemoteIterator() {
CursorRequestMessage crm = getCRM();
crm.setStoreName(storeName);
SyncMessage bsm = new SyncMessage(MessageType.CURSOR_REQUEST);
bsm.setCursorRequest(crm);
SyncReply reply;
try {
reply = getReply(crm.getHeader().getTransactionId(),
bsm);
} catch (SyncException e) {
throw new SyncRuntimeException(e);
}
this.cursorId = reply.getIntValue();
if (reply.getKeyedValues() != null)
currentChunk = reply.getKeyedValues().iterator();
}
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:17,代码来源:RemoteStore.java
示例2: getChunk
import org.sdnplatform.sync.error.SyncRuntimeException; //导入依赖的package包/类
private Iterator<KeyedValues> getChunk() {
CursorRequestMessage crm = getCRM();
crm.setCursorId(cursorId);
SyncMessage bsm = new SyncMessage(MessageType.CURSOR_REQUEST);
bsm.setCursorRequest(crm);
SyncReply reply;
try {
reply = getReply(crm.getHeader().getTransactionId(),
bsm);
} catch (SyncException e) {
throw new SyncRuntimeException(e);
}
if (reply.getKeyedValues() == null ||
reply.getKeyedValues().size() == 0) return null;
return reply.getKeyedValues().iterator();
}
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:19,代码来源:RemoteStore.java
示例3: ensureConnected
import org.sdnplatform.sync.error.SyncRuntimeException; //导入依赖的package包/类
protected void ensureConnected() {
if (!ready) {
for (int i = 0; i < 2; i++) {
synchronized (this) {
connectionGeneration += 1;
if (connect(hostname, port))
return;
}
try {
Thread.sleep(1000);
} catch (Exception e) {}
}
if (channel == null)
throw new SyncRuntimeException(new SyncException("Failed to establish connection"));
}
}
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:17,代码来源:RemoteSyncManager.java
示例4: next
import org.sdnplatform.sync.error.SyncRuntimeException; //导入依赖的package包/类
@Override
public Pair<ByteArray, List<Versioned<byte[]>>> next() {
if (hasNext()) {
try {
ByteArray key = getStringAsKey(rs.getString("datakey"));
List<Versioned<byte[]>> vlist = getVersionedList(rs);
hasNextSet = false;
return new Pair<ByteArray,
List<Versioned<byte[]>>>(key, vlist);
} catch (Exception e) {
throw new SyncRuntimeException("Error in DB Iterator",
new PersistException(e));
}
} else {
throw new NoSuchElementException();
}
}
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:18,代码来源:JavaDBStorageEngine.java
示例5: RemoteIterator
import org.sdnplatform.sync.error.SyncRuntimeException; //导入依赖的package包/类
public RemoteIterator() {
CursorRequestMessage crm = getCRM();
crm.setStoreName(storeName);
SyncMessage bsm = new SyncMessage(MessageType.CURSOR_REQUEST);
bsm.setCursorRequest(crm);
SyncReply reply;
try {
reply = getReply(crm.getHeader().getTransactionId(),
bsm);
} catch (SyncException e) {
throw new SyncRuntimeException(e);
}
this.cursorId = reply.getIntValue();
if (reply.getKeyedValues() != null)
currentChunk = reply.getKeyedValues().iterator();
}
开发者ID:zhenshengcai,项目名称:floodlight-hardware,代码行数:17,代码来源:RemoteStore.java
示例6: getChunk
import org.sdnplatform.sync.error.SyncRuntimeException; //导入依赖的package包/类
private Iterator<KeyedValues> getChunk() {
CursorRequestMessage crm = getCRM();
crm.setCursorId(cursorId);
SyncMessage bsm = new SyncMessage(MessageType.CURSOR_REQUEST);
bsm.setCursorRequest(crm);
SyncReply reply;
try {
reply = getReply(crm.getHeader().getTransactionId(),
bsm);
} catch (SyncException e) {
throw new SyncRuntimeException(e);
}
if (reply.getKeyedValues() == null ||
reply.getKeyedValues().size() == 0) return null;
return reply.getKeyedValues().iterator();
}
开发者ID:zhenshengcai,项目名称:floodlight-hardware,代码行数:19,代码来源:RemoteStore.java
示例7: ensureConnected
import org.sdnplatform.sync.error.SyncRuntimeException; //导入依赖的package包/类
protected void ensureConnected() {
if (!ready) {
for (int i = 0; i < 2; i++) {
synchronized (this) {
connectionGeneration += 1;
if (connect(hostname, port))
return;
}
try {
Thread.sleep(1000);
} catch (Exception e) {}
}
if (channel == null)
throw new SyncRuntimeException(new SyncException("Failed to establish connection"));
}
}
开发者ID:zhenshengcai,项目名称:floodlight-hardware,代码行数:17,代码来源:RemoteSyncManager.java
示例8: next
import org.sdnplatform.sync.error.SyncRuntimeException; //导入依赖的package包/类
@Override
public Pair<ByteArray, List<Versioned<byte[]>>> next() {
if (hasNext()) {
try {
ByteArray key = getStringAsKey(rs.getString("datakey"));
List<Versioned<byte[]>> vlist = getVersionedList(rs);
hasNextSet = false;
return new Pair<ByteArray,
List<Versioned<byte[]>>>(key, vlist);
} catch (Exception e) {
throw new SyncRuntimeException("Error in DB Iterator",
new PersistException(e));
}
} else {
throw new NoSuchElementException();
}
}
开发者ID:zhenshengcai,项目名称:floodlight-hardware,代码行数:18,代码来源:JavaDBStorageEngine.java
注:本文中的org.sdnplatform.sync.error.SyncRuntimeException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论