DITTransportSnapshot

@interface DITTransportSnapshot : NSObject

Provides information about a given transport at a point in time.

  • A description of the condition that the transport is in.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull connection_type;
  • 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 disconneccted state for the transport.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSArray<NSNumber *> *_Nonnull disconnected;