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

io.polaris.core.log.IStack Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.log;

/**
 * @author Qt
 * @since 1.8,  Aug 04, 2023
 */
interface IStack {
	void put(String key, String val);

	String get(String key);

	void remove(String key);

	void clear();

	void push(String msg);

	String pop();

	String peek();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy