Packages

class DeploymentOptions extends AnyRef

Options for configuring a verticle deployment.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DeploymentOptions
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DeploymentOptions(_asJava: core.DeploymentOptions)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def asJava: core.DeploymentOptions
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def getConfig: JsonObject
  12. def getExtraClasspath: Buffer[String]
  13. def getInstances: Int
  14. def getIsolatedClasses: Buffer[String]
  15. def getIsolationGroup: String
  16. def getMaxWorkerExecuteTime: Long
  17. def getMaxWorkerExecuteTimeUnit: TimeUnit
  18. def getWorkerPoolName: String
  19. def getWorkerPoolSize: Int
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def isHa: Boolean
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def isMultiThreaded: Boolean
  24. def isWorker: Boolean
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def setConfig(value: JsonObject): DeploymentOptions

    Set the JSON configuration that will be passed to the verticle(s) when it's deployed

  29. def setExtraClasspath(value: Buffer[String]): DeploymentOptions

    Set any extra classpath to be used when deploying the verticle.

    Set any extra classpath to be used when deploying the verticle.

    Ignored if no isolation group is set.

  30. def setHa(value: Boolean): DeploymentOptions

    Set whether the verticle(s) will be deployed as HA.

  31. def setInstances(value: Int): DeploymentOptions

    Set the number of instances that should be deployed.

  32. def setIsolatedClasses(value: Buffer[String]): DeploymentOptions

    Set the isolated class names.

  33. def setIsolationGroup(value: String): DeploymentOptions

    Set the isolation group that will be used when deploying the verticle(s)

  34. def setMaxWorkerExecuteTime(value: Long): DeploymentOptions

    Sets the value of max worker execute time, in DeploymentOptions.

    Sets the value of max worker execute time, in DeploymentOptions.

    The default value of DeploymentOptions is

  35. def setMaxWorkerExecuteTimeUnit(value: TimeUnit): DeploymentOptions

    Set the time unit of maxWorkerExecuteTime

  36. def setMultiThreaded(value: Boolean): DeploymentOptions

    Set whether the verticle(s) should be deployed as a multi-threaded worker verticle.

    Set whether the verticle(s) should be deployed as a multi-threaded worker verticle.

    WARNING: Multi-threaded worker verticles are a deprecated feature.

    Most applications will have no need for them. Because of the concurrency in these verticles you have to be very careful to keep the verticle in a consistent state using standard Java techniques for multi-threaded programming.

    You can read the documentation that explains how you can replace this feature by the usage of custom worker pools or executeBlocking calls.

  37. def setWorker(value: Boolean): DeploymentOptions

    Set whether the verticle(s) should be deployed as a worker verticle

  38. def setWorkerPoolName(value: String): DeploymentOptions

    Set the worker pool name to use for this verticle.

    Set 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.

  39. def setWorkerPoolSize(value: Int): DeploymentOptions

    Set the maximum number of worker threads to be used by the Vert.x instance.

  40. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  41. def toString(): String
    Definition Classes
    AnyRef → Any
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped