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 aNetworkTable
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
tableCreated(NetworkTable parent, String name, NetworkTable table)
Called when a new table is created within aNetworkTable
.
-
-
-
Method Detail
-
tableCreated
void tableCreated(NetworkTable parent, String name, NetworkTable table)
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
-
-