Classes

The following classes are available globally.

  • An LCAddOnFactory creates instances of LCAddOn

    See more

    Declaration

    Objective-C

    @interface LCAddOnFactory : NSObject

    Swift

    class LCAddOnFactory : NSObject
  • An LCMicroService is the basic building block of LiquidCore. It encapsulates the runtime environment for a client-side micro app. An LCMicroService is a complete virtual machine whose operation is defined by the code referenced by the service URI. When an LCMicroService is instantiated, its Node.js environment is set up, its code downloaded (or fetched from cache) from the URI, and is executed in a VM. The host may interact with the VM via a simple message-based API.

    See more

    Declaration

    Objective-C

    @interface LCMicroService : NSObject

    Swift

    class LCMicroService
  • A node.js process instance

    See more

    Declaration

    Objective-C

    @interface LCProcess : NSObject

    Swift

    class LCProcess : NSObject