Package edu.wpi.first.networktables
Interface TableListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface TableListener
A listener that listens to new tables in a
NetworkTable
.-
Method Summary
Modifier and Type Method Description void
tableCreated(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
-