Package edu.wpi.first.networktables
Interface NetworkTable.SubTableListener
- Enclosing class:
- NetworkTable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A listener that listens to new tables in a
NetworkTable.-
Method Summary
Modifier and TypeMethodDescriptionvoidtableCreated(NetworkTable parent, String name, NetworkTable table) Called when a new table is created within aNetworkTable.
-
Method Details
-
tableCreated
Called when a new table is created within aNetworkTable.- Parameters:
parent- the parent of the tablename- the name of the new tabletable- the new table
-