RLMProviderClient

@interface RLMProviderClient : NSObject

Base provider client interface.

  • app

    The app associated with this provider client.

    Declaration

    Objective-C

    @property (nonatomic, strong) RLMApp *_Nonnull app;

    Swift

    var app: RLMApp { get set }
  • Initialize a provider client with a given app.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithApp:(nonnull RLMApp *)app;

    Swift

    init(app: RLMApp)

    Parameters

    app

    The app for this provider client.