CBLMessageEndpointListenerConfiguration

@interface CBLMessageEndpointListenerConfiguration : NSObject

ENTERPRISE EDITION ONLY.

The configuration for the CBLMessageEndpointListener.

  • The local database.

    Declaration

    Objective-C

    @property (nonatomic, readonly) CBLDatabase *_Nonnull database;
  • The data transmission protocol type.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite)
        CBLProtocolType protocolType;
  • Initializes a CBLMessageEndpointListenerConfiguration object.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDatabase:(nonnull CBLDatabase *)database
                                protocolType:(CBLProtocolType)protocolType;

    Parameters

    database

    The local database.

    protocolType

    The data transmission protocol type.

    Return Value

    The CBLMessageEndpointListenerConfiguration object.

  • Not available

    Declaration

    Objective-C

    - (nonnull instancetype)init;