Interface IMxRuntime


@Deprecated public interface IMxRuntime
Deprecated.
since 10.18. This class will be removed in Mendix 11. There is no replacement.
This interface is meant for internal use only.

This interface represents the runtime of a Mendix application.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static enum 
    Deprecated.
     
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    Returns the current state of the runtime.
    void
    initialize(IAppContainer appContainer)
    Deprecated.
    Initializes the runtime using an AppContainer.
    void
    Deprecated.
    Sends a request to the runtime.
    void
    Deprecated.
    Shuts down the runtime.
    void
    Deprecated.
    will be removed in MX11.
    boolean
    start(boolean autoUpgrade)
    Deprecated.
    Starts the runtime.
  • Field Details

  • Method Details

    • getStatus

      Deprecated.
      Returns the current state of the runtime.
    • initialize

      void initialize(IAppContainer appContainer)
      Deprecated.
      Initializes the runtime using an AppContainer.
      Parameters:
      appContainer - the AppContainer
    • start

      @Deprecated void start() throws AdminException
      Deprecated.
      will be removed in MX11. Use start(boolean) instead.
      Starts the runtime.
      Throws:
      AdminException
    • start

      boolean start(boolean autoUpgrade) throws AdminException
      Deprecated.
      Starts the runtime.
      Parameters:
      autoUpgrade - specifies whether to automatically upgrade the database if it out-of-sync, or fail the start-up
      Returns:
      true when the runtime is fully started, false otherwise
      Throws:
      AdminException
    • processRequest

      void processRequest(IMxRuntimeRequest request, IMxRuntimeResponse response) throws Exception
      Deprecated.
      Sends a request to the runtime.
      Parameters:
      request - the request object
      response - the response object
      Throws:
      Exception
    • shutdown

      void shutdown() throws AdminException
      Deprecated.
      Shuts down the runtime.
      Throws:
      AdminException