DeploymentOptions(JsonObject? config = null, {String*}? extraClasspath = null, Boolean? ha = null, Integer? instances = null, {String*}? isolatedClasses = null, String? isolationGroup = null, Integer? maxWorkerExecuteTime = null, Boolean? multiThreaded = null, Boolean? worker = null, String? workerPoolName = null, Integer? workerPoolSize = null)Parameters: config = nullSet the JSON configuration that will be passed to the verticle(s) when it's deployed
= nullSet any extra classpath to be used when deploying the verticle.
Ignored if no isolation group is set.
ha = nullSet whether the verticle(s) will be deployed as HA.
instances = nullSet the number of instances that should be deployed.
isolatedClasses = nullSet the isolated class names.
isolationGroup = nullSet the isolation group that will be used when deploying the verticle(s)
maxWorkerExecuteTime = nullSets the value of max worker execute time, in ns.
multiThreaded = nullSet whether the verticle(s) should be deployed as a multi-threaded worker verticle
worker = nullSet whether the verticle(s) should be deployed as a worker verticle
workerPoolName = nullSet the worker pool name to use for this verticle. When no name is set, the Vert.x
worker pool will be used, when a name is set, the verticle will use a named worker pool.
workerPoolSize = nullSet the maximum number of worker threads to be used by the Vert.x instance.
|