Interface ModulesService (2.0.0)

public interface ModulesService

ModulesService allows the application to fetch information about its own module and version information. Additionally, the service has the ability to start, stop and change the number of instances associated with a module version.

Methods

getCurrentInstanceId()

public abstract String getCurrentInstanceId()

Get the id of the current instance.

Returns
TypeDescription
String

current instance id

getCurrentModule()

public abstract String getCurrentModule()

Get the name of the current module. ("default" if modules are not enabled for this app)

Returns
TypeDescription
String

the name of the module

getCurrentVersion()

public abstract String getCurrentVersion()

Get the name of the current version.

Returns
TypeDescription
String

the name of the version

getDefaultVersion(String module)

public abstract String getDefaultVersion(String module)

Returns the name of the default version for the module.

Parameter
NameDescription
moduleString

the name of the module or null for the current module

Returns
TypeDescription
String

getInstanceHostname(String module, String version, String instance)

public abstract String getInstanceHostname(String module, String version, String instance)

Returns a host name to use for the given module, version and instance.

Parameters
NameDescription
moduleString

the name of the module or null to indicate the current module

versionString

the name of the version or null to indicate the current version

instanceString

the id of a particular instance to address

Returns
TypeDescription
String

the hostname of the given instance

getModules()

public abstract Set<String> getModules()

Get the set of modules that are available to the application.

Returns
TypeDescription
Set<String>

Set of modules available to the application

getNumInstances(String module, String version)

public abstract int getNumInstances(String module, String version)

Returns the number of instances that are available to the given manual scaling module version.

Parameters
NameDescription
moduleString

the name of the module or null for the current module

versionString

the name of the version or null for the current version

Returns
TypeDescription
int

getVersionHostname(String module, String version)

public abstract String getVersionHostname(String module, String version)

Returns a host name to use for the given module and version.

Parameters
NameDescription
moduleString

the name of the module or null to indicate the current module

versionString

the name of the version or null to indicate the current version

Returns
TypeDescription
String

getVersions(String module)

public abstract Set<String> getVersions(String module)

Returns the set of versions that are available to the given module.

Parameter
NameDescription
moduleString

the name of the module or null for the current module

Returns
TypeDescription
Set<String>

setNumInstances(String module, String version, long instances)

public abstract void setNumInstances(String module, String version, long instances)

Set the number of instances that are available to the given manual scaling module version. Changing the number of instances is an asynchronous process so this may return before added instances begin serving or removed instances stop serving.

Parameters
NameDescription
moduleString

the name of the module or null for the current module

versionString

the name of the version or null for the current version

instanceslong

the number of instances to set

setNumInstancesAsync(String module, String version, long instances)

public abstract Future<Void> setNumInstancesAsync(String module, String version, long instances)

Starts an asynchronous call to #setNumInstances and returns a Future to obtain its eventual result. When the returned Future yields a successful result ModulesService will have successfully initiated the process of setting the number of instances. There may be some delay before added instances start serving or removed instances stop serving.

Parameters
NameDescription
moduleString
versionString
instanceslong
Returns
TypeDescription
Future<Void>

startVersion(String module, String version)

public abstract void startVersion(String module, String version)

Starts the given manual scaling or basic scaling module version. Starting a version is an asynchronous process so this may return before the started version is serving. If the requested module version is already started this returns without error.

Parameters
NameDescription
moduleString

the name of the module

versionString

the name of the version

startVersionAsync(String module, String version)

public abstract Future<Void> startVersionAsync(String module, String version)

Starts an asynchronous call to #startVersion and returns a Future to obtain its eventual result. When the returned Future yields a successful result ModulesService will have successfully initiated the process of starting the requested version. There may be some delay before the version starts serving.

Parameters
NameDescription
moduleString
versionString
Returns
TypeDescription
Future<Void>

stopVersion(String module, String version)

public abstract void stopVersion(String module, String version)

Stops the given manual scaling or basic scaling module version. Stopping a version is an asynchronous process so this may return before the stopped version stops serving. If the requested module version is already stopped this returns without error.

Parameters
NameDescription
moduleString

the name of the module or null for the current module

versionString

the name of the version or null for the current version

stopVersionAsync(String module, String version)

public abstract Future<Void> stopVersionAsync(String module, String version)

Starts an asynchronous call to #stopVersion and returns a Future to obtain its eventual result. When the returned Future yields a successful result ModulesService will have successfully initiated the process of stopping the requested version. There may be some delay before the version stops serving.

Parameters
NameDescription
moduleString
versionString
Returns
TypeDescription
Future<Void>