Package com.mendix.m2ee.api
Interface IMxRuntime
public interface IMxRuntime
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 TypeMethodDescriptionReturns the current state of the runtime.void
initialize
(IAppContainer appContainer) Initializes the runtime using an AppContainer.void
processRequest
(IMxRuntimeRequest request, IMxRuntimeResponse response) Sends a request to the runtime.void
shutdown()
Shuts down the runtime.void
start()
Starts the runtime.
-
Field Details
-
CHARSET
- See Also:
-
-
Method Details
-
getStatus
IMxRuntime.RuntimeState getStatus()Returns the current state of the runtime. -
initialize
Initializes the runtime using an AppContainer.- Parameters:
appContainer
- the AppContainer
-
start
Starts the runtime.- Throws:
AdminException
-
processRequest
Sends a request to the runtime.- Parameters:
request
- the request objectresponse
- the response object- Throws:
Exception
-
shutdown
Shuts down the runtime.- Throws:
AdminException
-