com.github.akurilov.concurrent.Initializable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-concurrent Show documentation
Show all versions of java-concurrent Show documentation
The concurrency library which includes the coroutines functionality
The newest version!
package com.github.akurilov.concurrent;
/**
* Something what may be initialized once
*/
public interface Initializable {
/**
* @return true if initialized, false otherwise
*/
boolean isInitialized();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy