DITTransportSnapshot
@interface DITTransportSnapshot : NSObject
Provides information about a given transport at a point in time.
-
The type of connection that exists between the peers.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull connectionType; -
A list of the site IDs that are in a connecting state for the transport.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<NSNumber *> *_Nonnull connecting; -
A list of the site IDs that are in a connected state for the transport.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<NSNumber *> *_Nonnull connected; -
A list of the site IDs that are in a disconnecting state for the transport.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<NSNumber *> *_Nonnull disconnecting; -
A list of the site IDs that are in a disconnected state for the transport.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<NSNumber *> *_Nonnull disconnected;
DITTransportSnapshot Class Reference