Package net.floodlightcontroller.storage

Examples of net.floodlightcontroller.storage.StorageSourceNotification


        String primaryKeyName = getTablePrimaryKeyName(tableName);
        for (Map<String,Object> row : rows) {
            Object rowKey = row.get(primaryKeyName);
            rowKeys.add(rowKey);
        }
        StorageSourceNotification notification =
            new StorageSourceNotification(tableName, action, rowKeys);
        notifyListeners(notification);
    }
View Full Code Here


        notifyListeners(notification);
    }
   
    protected void sendNotification(String tableName,
            StorageSourceNotification.Action action, Set<Object> rowKeys) {
        StorageSourceNotification notification =
            new StorageSourceNotification(tableName, action, rowKeys);
        notifyListeners(notification);
    }
View Full Code Here

TOP

Related Classes of net.floodlightcontroller.storage.StorageSourceNotification

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.