com.github.cowwoc.tokenbucket.internal.CloseableLock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of token-bucket Show documentation
Show all versions of token-bucket Show documentation
A Java implementation of the Token Bucket algorithm
package com.github.cowwoc.tokenbucket.internal;
/**
* Let the compiler know that releasing a lock does not throw any exceptions.
*/
public interface CloseableLock extends AutoCloseable
{
@Override
void close();
}