Package org.sdnplatform.sync.internal.store

Examples of org.sdnplatform.sync.internal.store.MappingStoreListener


    @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
View Full Code Here

TOP

Related Classes of org.sdnplatform.sync.internal.store.MappingStoreListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.