All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.shark.container.Container Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.shark.container;

public interface Container {
	/**
	 * Container init
	 * @return Container
	 */
	public Container init();

	/**
	 * Container start
	 * @return Container
	 */
	public Container start();

	/**
	 * Container stop
	 * @return Container
	 */
	public Container stop();

	/**
	 * Container init finally,sub class could implement this method,this method will be call in the final area of int()
	 */
	public void containerInit();

	/**
	 * Container start finally,sub class could implement this method,this method will be call in the final area of start()
	 */
	public void containerStart();

	/**
	 * Container stop finally,sub class could implement this method,this method will be call in the final area of stop()
	 */
	public void containerStop();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy