WPILibC++ 2023.4.3-108-ge5452e3
|
NetworkTables Integer publisher. More...
#include <networktables/IntegerTopic.h>
Public Types | |
using | TopicType = IntegerTopic |
using | ValueType = int64_t |
using | ParamType = int64_t |
using | TimestampedValueType = TimestampedInteger |
Public Member Functions | |
IntegerPublisher ()=default | |
IntegerPublisher (NT_Publisher handle) | |
Construct from a publisher handle; recommended to use IntegerTopic::Publish() instead. More... | |
void | Set (ParamType value, int64_t time=0) |
Publish a new value. More... | |
void | SetDefault (ParamType value) |
Publish a default value. More... | |
TopicType | GetTopic () const |
Get the corresponding topic. More... | |
Public Member Functions inherited from nt::Publisher | |
virtual | ~Publisher () |
Publisher (const Publisher &)=delete | |
Publisher & | operator= (const Publisher &)=delete |
Publisher (Publisher &&) | |
Publisher & | operator= (Publisher &&) |
operator bool () const | |
Determines if the native handle is valid. More... | |
NT_Publisher | GetHandle () const |
Gets the native handle for the publisher. More... | |
Topic | GetTopic () const |
Gets the published-to topic. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from nt::Publisher | |
Publisher ()=default | |
Publisher (NT_Publisher handle) | |
Protected Attributes inherited from nt::Publisher | |
NT_Publisher | m_pubHandle {0} |
NetworkTables Integer publisher.
using nt::IntegerPublisher::ParamType = int64_t |
using nt::IntegerPublisher::ValueType = int64_t |
|
default |
|
inlineexplicit |
Construct from a publisher handle; recommended to use IntegerTopic::Publish() instead.
handle | Native handle |
|
inline |
Get the corresponding topic.
|
inline |
Publish a new value.
value | value to publish |
time | timestamp; 0 indicates current NT time should be used |
|
inline |
Publish a default value.
On reconnect, a default value will never be used in preference to a published value.
value | value |