ContainerHolder.ContainerAvailableListener

  • ContainerHolder.ContainerAvailableListener is a listener interface that is called when a new container becomes available.

  • The onContainerAvailable method is triggered when a new container is available in the container holder, providing the container holder and the container version.

  • The available container is not active immediately and requires calling ContainerHolder.getContainer() to be used.

public static interface ContainerHolder.ContainerAvailableListener

Listener object that is called when a new container is available.

Public Method Summary

abstract void
onContainerAvailable(ContainerHolder containerHolder, String containerVersion)
Called to signify that a new container is available in the container holder.

Public Methods

public abstract void onContainerAvailable (ContainerHolder containerHolder, String containerVersion)

Called to signify that a new container is available in the container holder. This container is not yet active; in order to actually begin using the container, call ContainerHolder.getContainer().

Parameters
containerHolder
containerVersion the version of the container that is now available