MachineLearningController.StartEngine Method |
Ensures that the machine learning engine is started and retrieve the set of JS handlers.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPostAttribute("StartEngine")]
[ProducesResponseTypeAttribute(503)]
public ActionResult StartEngine(
Guid? sessionId = null
)
<HttpPostAttribute("StartEngine")>
<ProducesResponseTypeAttribute(503)>
Public Function StartEngine (
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpPostAttribute(L"StartEngine")]
[ProducesResponseTypeAttribute(503)]
ActionResult^ StartEngine(
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("StartEngine")>]
[<ProducesResponseTypeAttribute(503)>]
member StartEngine :
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- sessionId (Optional)
- Type: System.Nullable<Guid>
The session ID.
Return Value
Type:
ActionResultThe operation completed successfully. The payload contains a dictionary of machine learning plugin names and corresponding JS handlers.
See Also