001// Copyright (c) FIRST and other WPILib contributors.
002// Open Source Software; you can modify and/or share it under the terms of
003// the WPILib BSD license file in the root directory of this project.
004
005// THIS FILE WAS AUTO-GENERATED BY ./ntcore/generate_topics.py. DO NOT MODIFY
006
007package edu.wpi.first.networktables;
008
009/**
010 * NetworkTables StringArray entry.
011 *
012 * <p>Unlike NetworkTableEntry, the entry goes away when close() is called.
013 */
014public interface StringArrayEntry extends StringArraySubscriber, StringArrayPublisher {
015  /** Stops publishing the entry if it's published. */
016  void unpublish();
017}