Diffusion Apple API  6.10.3
Unified Client Library for iOS, tvOS and OS X / macOS
 All Classes Files Functions Variables Enumerations Enumerator Properties Pages
Enumerations | Functions
PTDiffusionTopicType.h File Reference

Enumerations

enum  PTDiffusionTopicType {
  PTDiffusionTopicType_Binary = 13, PTDiffusionTopicType_JSON = 14, PTDiffusionTopicType_Double = 15, PTDiffusionTopicType_Int64 = 16,
  PTDiffusionTopicType_String = 17, PTDiffusionTopicType_TimeSeries = 18, PTDiffusionTopicType_RecordV2 = 19, PTDiffusionTopicType_Unknown = 20
}
 

Functions

NSString * PTDiffusionTopicTypeToString (PTDiffusionTopicType topicType)
 
NSString * PTDiffusionTopicTypeToName (PTDiffusionTopicType topicType)
 

Detailed Description

The topic type determines the type of the data values a topic publishes to subscribers.

Source Topics

Most topics are source topics. The characteristics of each type of source topic are summarized in the following table.

Topic type State Data type
PTDiffusionTopicType_String Single scalar value. String.
PTDiffusionTopicType_Int64 Single scalar value. 64-bit integer.
PTDiffusionTopicType_Double Single scalar value. Double precision floating point number.
PTDiffusionTopicType_Binary Single scalar value. Arbitrary binary data.
PTDiffusionTopicType_RecordV2 Single composite value. PTDiffusionRecordV2 – Diffusion-specific data type. A list of records, each composed of field values, with an optional schema.
PTDiffusionTopicType_JSON Single composite value. PTDiffusionJSON, backed by CBOR-format binary.
PTDiffusionTopicType_TimeSeries Append-only log of events. PTDiffusionTimeSeriesEvent containing a value of a well-known data type.
See Also
PTDiffusionTopicSpecification
Since
5.6

Enumeration Type Documentation

Enumerator
PTDiffusionTopicType_Binary 

Topic that stores and publishes binary values. Based on the PTDiffusionBinary data type.

Supports delta-streams.

Since
5.7
PTDiffusionTopicType_JSON 

Topic that stores and publishes JSON (JavaScript Object Notation) values. Based on the PTDiffusionJSON data type.

Supports delta-streams.

Since
5.7
PTDiffusionTopicType_Double 

Topic that stores and publishes IEEE 754 double-precision floating point numbers. Based on the double data type.

Supports nil values.

The topic does not support delta-streams — only complete values are transmitted.

Since
6.0
PTDiffusionTopicType_Int64 

Topic that stores and publishes 64-bit integer values. Based on the int64 data type.

Supports nil values.

The topic does not support delta-streams — only complete values are transmitted.

Since
6.0
PTDiffusionTopicType_String 

Topic that stores and publishes string values. Based on the string data type.

Supports nil values.

Supports delta-streams.

Since
6.0
PTDiffusionTopicType_TimeSeries 

A time series is a sequence of events. Each event contains a value and has server-assigned metadata comprised of a sequence number, timestamp, and author.

A time series topic allows sessions to access a time series that is maintained by the server. A time series topic has an associated event data type that determines the type of value associated with each event.

Retained range

The [PTDiffusionTopicSpecification timeSeriesSubscriptionRange] property configures the range of historic events retained by a time series topic. If the property is not specified, a time series topic will retain the ten most recent events.

Subscription range

The [PTDiffusionTopicSpecification timeSeriesSubscriptionRange] property configures a time series topic to send a range of historic events from the end of the time series to new subscribers. This is a convenient way to synchronize new subscribers without requiring the use of a range query.

By default, new subscribers will be sent the latest event if delta streams are enabled and no events if delta streams are disabled.

Mandatory properties

The [PTDiffusionTopicSpecification timeSeriesEventValueType] property must be provided when creating a time series topic.

Since
6.0
PTDiffusionTopicType_RecordV2 

Topic that stores and publishes data in the form of records and fields.

Supports delta-streams.

Since
6.0
PTDiffusionTopicType_Unknown 

A topic type that is unsupported by the session.

Since
6.1

Function Documentation

NSString* PTDiffusionTopicTypeToName ( PTDiffusionTopicType  topicType)

Returns the name of this topic type constant, exactly as declared in its enum declaration in the Diffusion API for Java.

Parameters
topicTypeThe topic type for which the name is to be returned.
Returns
name of given topic type constant, exactly as declared in its enum declaration.
Since
5.9
NSString* PTDiffusionTopicTypeToString ( PTDiffusionTopicType  topicType)

Returns a localized string representation of the given topic type.

Parameters
topicTypeThe topic type for which a description is to be returned.
Returns
localized string representation of the given topic type.
Since
5.7