Interface WiredNetworkChange
public interface WiredNetworkChange
Represents a change to the objects on a wired network.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionA set of peripherals which have been added.A set of peripherals which have been removed.
-
Method Details
-
peripheralsRemoved
Map<String,IPeripheral> peripheralsRemoved()A set of peripherals which have been removed. Note that there may be entries with the same name in the added and removed set, but with a different peripheral.- Returns:
- The set of removed peripherals.
-
peripheralsAdded
Map<String,IPeripheral> peripheralsAdded()A set of peripherals which have been added. Note that there may be entries with the same name in the added and removed set, but with a different peripheral.- Returns:
- The set of added peripherals.
-