EMEmvService

Objective-C


@interface EMEmvService : NSObject

Swift

class EMEmvService : NSObject

Service class providing factory for creating decoder.

Since

5.0
  • Creates EMEmvService object.

    Declaration

    Objective-C

    + (nonnull EMEmvService *)createServiceWithModule:(nonnull EMEmvModule *)module;

    Swift

    class func createService(with module: EMEmvModule) -> EMEmvService

    Parameters

    module

    an instance of EMEmvModule. Use +[EMEmvModule createModule] to obtain one.

    Return Value

    Instance of EMEmvService.

  • Creates EMEmvFactory object.

    Declaration

    Objective-C

    - (nonnull id<EMEmvFactory>)createFactory;

    Swift

    func createFactory() -> any EMEmvFactory

    Return Value

    Instance of EMEmvFactory.

  • Unavailable

    Init method not available, please use createServiceWithModule to create object.

    Declaration

    Objective-C

    - (nonnull id)init;
  • Unavailable

    New method not available, please use createServiceWithModule to create object.

    Declaration

    Objective-C

    + (nonnull id)new;