io.api.etherscan.manager.impl.FakeQueueManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-etherscan-api Show documentation
Show all versions of java-etherscan-api Show documentation
Library is a wrapper for EtherScan API.
package io.api.etherscan.manager.impl;
import io.api.etherscan.manager.IQueueManager;
/**
* Fake queue manager, always give turns, when you have no limits
*
* @author GoodforGod
* @since 03.11.2018
*/
public class FakeQueueManager implements IQueueManager {
@Override
public boolean takeTurn() {
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy