Package com.mendix.m2ee.api
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
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Returns the current state of the runtime.void
initialize
(IAppContainer appContainer) Deprecated.Initializes the runtime using an AppContainer.void
processRequest
(IMxRuntimeRequest request, IMxRuntimeResponse response) Deprecated.Sends a request to the runtime.void
shutdown()
Deprecated.Shuts down the runtime.void
start()
Deprecated.will be removed in MX11.boolean
start
(boolean autoUpgrade) Deprecated.Starts the runtime.
-
Field Details
-
CHARSET
Deprecated.- See Also:
-
-
Method Details
-
getStatus
IMxRuntime.RuntimeState getStatus()Deprecated.Returns the current state of the runtime. -
initialize
Deprecated.Initializes the runtime using an AppContainer.- Parameters:
appContainer
- the AppContainer
-
start
Deprecated.will be removed in MX11. Usestart(boolean)
instead.Starts the runtime.- Throws:
AdminException
-
start
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
Deprecated.Sends a request to the runtime.- Parameters:
request
- the request objectresponse
- the response object- Throws:
Exception
-
shutdown
Deprecated.Shuts down the runtime.- Throws:
AdminException
-