WPILibC++ 2023.4.3-108-ge5452e3
|
NetworkTables DoubleArray entry. More...
#include <networktables/DoubleArrayTopic.h>
Public Types | |
using | SubscriberType = DoubleArraySubscriber |
using | PublisherType = DoubleArrayPublisher |
using | TopicType = DoubleArrayTopic |
using | ValueType = std::vector< double > |
using | ParamType = std::span< const double > |
using | SmallRetType = std::span< double > |
using | SmallElemType = double |
using | TimestampedValueType = TimestampedDoubleArray |
Public Types inherited from nt::DoubleArraySubscriber | |
using | TopicType = DoubleArrayTopic |
using | ValueType = std::vector< double > |
using | ParamType = std::span< const double > |
using | TimestampedValueType = TimestampedDoubleArray |
using | SmallRetType = std::span< double > |
using | SmallElemType = double |
using | TimestampedValueViewType = TimestampedDoubleArrayView |
Public Types inherited from nt::DoubleArrayPublisher | |
using | TopicType = DoubleArrayTopic |
using | ValueType = std::vector< double > |
using | ParamType = std::span< const double > |
using | SmallRetType = std::span< double > |
using | SmallElemType = double |
using | TimestampedValueType = TimestampedDoubleArray |
Public Member Functions | |
DoubleArrayEntry ()=default | |
DoubleArrayEntry (NT_Entry handle, ParamType defaultValue) | |
Construct from an entry handle; recommended to use DoubleArrayTopic::GetEntry() instead. More... | |
operator bool () const | |
Determines if the native handle is valid. More... | |
NT_Entry | GetHandle () const |
Gets the native handle for the entry. More... | |
TopicType | GetTopic () const |
Get the corresponding topic. More... | |
void | Unpublish () |
Stops publishing the entry if it's published. More... | |
Public Member Functions inherited from nt::DoubleArraySubscriber | |
DoubleArraySubscriber ()=default | |
DoubleArraySubscriber (NT_Subscriber handle, ParamType defaultValue) | |
Construct from a subscriber handle; recommended to use DoubleArrayTopic::Subscribe() instead. More... | |
ValueType | Get () const |
Get the last published value. More... | |
ValueType | Get (ParamType defaultValue) const |
Get the last published value. More... | |
SmallRetType | Get (wpi::SmallVectorImpl< SmallElemType > &buf) const |
Get the last published value. More... | |
SmallRetType | Get (wpi::SmallVectorImpl< SmallElemType > &buf, ParamType defaultValue) const |
Get the last published value. More... | |
TimestampedValueType | GetAtomic () const |
Get the last published value along with its timestamp If no value has been published, returns the stored default value and a timestamp of 0. More... | |
TimestampedValueType | GetAtomic (ParamType defaultValue) const |
Get the last published value along with its timestamp. More... | |
TimestampedValueViewType | GetAtomic (wpi::SmallVectorImpl< SmallElemType > &buf) const |
Get the last published value along with its timestamp. More... | |
TimestampedValueViewType | GetAtomic (wpi::SmallVectorImpl< SmallElemType > &buf, ParamType defaultValue) const |
Get the last published value along with its timestamp. More... | |
std::vector< TimestampedValueType > | ReadQueue () |
Get an array of all value changes since the last call to ReadQueue. More... | |
TopicType | GetTopic () const |
Get the corresponding topic. More... | |
Public Member Functions inherited from nt::Subscriber | |
virtual | ~Subscriber () |
Subscriber (const Subscriber &)=delete | |
Subscriber & | operator= (const Subscriber &)=delete |
Subscriber (Subscriber &&) | |
Subscriber & | operator= (Subscriber &&) |
operator bool () const | |
Determines if the native handle is valid. More... | |
NT_Subscriber | GetHandle () const |
Gets the native handle for the subscriber. More... | |
bool | Exists () const |
Determines if the topic is currently being published. More... | |
int64_t | GetLastChange () const |
Gets the last time the value was changed. More... | |
Topic | GetTopic () const |
Gets the subscribed-to topic. More... | |
Public Member Functions inherited from nt::DoubleArrayPublisher | |
DoubleArrayPublisher ()=default | |
DoubleArrayPublisher (NT_Publisher handle) | |
Construct from a publisher handle; recommended to use DoubleArrayTopic::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::Subscriber | |
Subscriber ()=default | |
Subscriber (NT_Subscriber handle) | |
Protected Member Functions inherited from nt::Publisher | |
Publisher ()=default | |
Publisher (NT_Publisher handle) | |
Protected Attributes inherited from nt::Subscriber | |
NT_Subscriber | m_subHandle {0} |
Protected Attributes inherited from nt::Publisher | |
NT_Publisher | m_pubHandle {0} |
NetworkTables DoubleArray entry.
using nt::DoubleArrayEntry::ParamType = std::span<const double> |
using nt::DoubleArrayEntry::SmallElemType = double |
using nt::DoubleArrayEntry::SmallRetType = std::span<double> |
using nt::DoubleArrayEntry::ValueType = std::vector<double> |
|
default |
Construct from an entry handle; recommended to use DoubleArrayTopic::GetEntry() instead.
handle | Native handle |
defaultValue | Default value |
|
inline |
Gets the native handle for the entry.
|
inline |
Get the corresponding topic.
|
inlineexplicit |
Determines if the native handle is valid.
|
inline |
Stops publishing the entry if it's published.