-
Notifications
You must be signed in to change notification settings - Fork 6
ignite
Nuno Aguiar edited this page Dec 29, 2017
·
2 revisions
Ignite.Ignite(shouldLog)Setups an Apache Ignite node with no logging (unless shouldLog = true)
Ignite.getConfiguration() : IgniteConfigurationRetrieves the current Apache Ignite configuration.
Ignite.getIgnite() : IgniteRetrieves the Apache Ignite object.
Ignite.start(aName, secretKey, isClient)Starts an Ignite grid. Optionally you can provide the grid aName, a secret key and determine if it's a client.
Ignite.stop(aName, cancel)Stops the current Ignite grid. Optionally providing the grid name and cancel = true to cancel all current jobs.
Ignite.stopAll(cancel)Stops all accessible Ignite grids. Optionally with cancel = true to cancel all current jobs.