net.floodlightcontroller.storage
Interface IStorageSourceListener
- All Known Implementing Classes:
- Controller, LinkDiscoveryManager, StaticFlowEntryPusher
public interface IStorageSourceListener
Method Summary |
void |
rowsDeleted(java.lang.String tableName,
java.util.Set<java.lang.Object> rowKeys)
Called when a new row is deleted from the table. |
void |
rowsModified(java.lang.String tableName,
java.util.Set<java.lang.Object> rowKeys)
Called when rows are inserted or updated in the table. |
rowsModified
void rowsModified(java.lang.String tableName,
java.util.Set<java.lang.Object> rowKeys)
- Called when rows are inserted or updated in the table.
- Parameters:
tableName
- The table where the rows were insertedrowKeys
- The keys of the rows that were inserted
rowsDeleted
void rowsDeleted(java.lang.String tableName,
java.util.Set<java.lang.Object> rowKeys)
- Called when a new row is deleted from the table.
- Parameters:
tableName
- The table where the rows were deletedrowKeys
- The keys of the rows that were deleted