本文整理汇总了Java中org.sdnplatform.sync.error.UnknownStoreException类的典型用法代码示例。如果您正苦于以下问题:Java UnknownStoreException类的具体用法?Java UnknownStoreException怎么用?Java UnknownStoreException使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
UnknownStoreException类属于org.sdnplatform.sync.error包,在下文中一共展示了UnknownStoreException类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: newCursor
import org.sdnplatform.sync.error.UnknownStoreException; //导入依赖的package包/类
/**
* Allocate a new cursor for the given store name
* @param storeName the store name
* @return the {@link Cursor}
* @throws SyncException
*/
public Cursor newCursor(String storeName) throws UnknownStoreException {
IStore<ByteArray, byte[]> store = getStore(storeName);
int cursorId = rpcService.getTransactionId();
Cursor cursor = new Cursor(cursorId, store.entries());
cursorMap.put(Integer.valueOf(cursorId), cursor);
return cursor;
}
示例2: getStoreInternal
import org.sdnplatform.sync.error.UnknownStoreException; //导入依赖的package包/类
protected SynchronizingStorageEngine getStoreInternal(String storeName)
throws UnknownStoreException {
SynchronizingStorageEngine store = storeRegistry.get(storeName);
if (store == null) {
throw new UnknownStoreException("Store " + storeName +
" has not been registered");
}
return store;
}
示例3: getStoreClient
import org.sdnplatform.sync.error.UnknownStoreException; //导入依赖的package包/类
@Override
public <K, V> IStoreClient<K, V>
getStoreClient(String storeName,
Class<K> keyClass,
Class<V> valueClass)
throws UnknownStoreException {
return getStoreClient(storeName, keyClass, null,
valueClass, null, null);
}
示例4: addStoreListener
import org.sdnplatform.sync.error.UnknownStoreException; //导入依赖的package包/类
@Override
public void addStoreListener(IStoreListener<K> listener) {
if (listener == null)
throw new IllegalArgumentException("Must include listener");
MappingStoreListener msl =
new MappingStoreListener(keyType, keyClass, listener);
try {
syncManager.addListener(delegate.getName(), msl);
} catch (UnknownStoreException e) {
// this shouldn't happen since we already have a store client,
// unless the store has been deleted somehow
logger.error("Unexpected internal state: unknown store " +
"from store client. Could not register listener", e);
}
}
示例5: addListener
import org.sdnplatform.sync.error.UnknownStoreException; //导入依赖的package包/类
@Override
public void addListener(String storeName, MappingStoreListener listener)
throws UnknownStoreException {
ListenerStorageEngine store = localStores.get(storeName);
if (store == null)
throw new UnknownStoreException("Store " + storeName +
" has not been registered");
store.addListener(listener);
}
示例6: newCursor
import org.sdnplatform.sync.error.UnknownStoreException; //导入依赖的package包/类
/**
* Allocate a new cursor for the given store name
* @param storeName the store name
* @return the {@link Cursor}
* @throws SyncException
*/
public Cursor newCursor(String storeName) throws UnknownStoreException {
IStore<ByteArray, byte[]> store = getStore(storeName);
int cursorId = rpcService.getTransactionId();
Cursor cursor = new Cursor(cursorId, store.entries());
cursorMap.put(Integer.valueOf(cursorId), cursor);
return cursor;
}
示例7: getStoreInternal
import org.sdnplatform.sync.error.UnknownStoreException; //导入依赖的package包/类
protected SynchronizingStorageEngine getStoreInternal(String storeName)
throws UnknownStoreException {
SynchronizingStorageEngine store = storeRegistry.get(storeName);
if (store == null) {
throw new UnknownStoreException("Store " + storeName +
" has not been registered");
}
return store;
}
示例8: getStoreClient
import org.sdnplatform.sync.error.UnknownStoreException; //导入依赖的package包/类
/**
* The "real" version of getStoreClient that will be called by all
* the others
* @param storeName the store name
* @param keyClass the key class
* @param keyType the key type
* @param valueClass the value class
* @param valueType the value type
* @param resolver the inconsistency resolver
* @return a {@link DefaultStoreClient} using the given parameters.
* @throws UnknownStoreException
*/
public <K, V> IStoreClient<K, V>
getStoreClient(String storeName,
Class<K> keyClass,
TypeReference<K> keyType,
Class<V> valueClass,
TypeReference<V> valueType,
IInconsistencyResolver<Versioned<V>> resolver)
throws UnknownStoreException {
IStore<ByteArray,byte[]> store = getStore(storeName);
IStore<K, V> serializingStore;
if (valueType != null && keyType != null) {
serializingStore =
new JacksonStore<K, V>(store, keyType, valueType);
} else if (valueClass != null && keyClass != null) {
serializingStore =
new JacksonStore<K, V>(store, keyClass, valueClass);
} else {
throw new IllegalArgumentException("Must include type reference" +
" or value class");
}
DefaultStoreClient<K, V> storeClient =
new DefaultStoreClient<K, V>(serializingStore,
resolver,
this,
keyClass,
keyType);
return storeClient;
}