001package edu.wpi.first.wpilibj.networktables2.thread; 002 003/** 004 * Represents a thread in the network tables system 005 * @author mwills 006 * 007 */ 008public interface NTThread { 009 /** 010 * stop the thread 011 */ 012 void stop(); 013 /** 014 * @return true if the thread is running 015 */ 016 boolean isRunning(); 017}