blob: 6a6d5746709bef16913408b962d042f07e6ea28b [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.twitter.distributedlog.util;
public interface PermitManager {
public static interface Permit {
static final Permit ALLOWED = new Permit() {
@Override
public boolean isAllowed() {
return true;
}
};
boolean isAllowed();
}
public static PermitManager UNLIMITED_PERMIT_MANAGER = new PermitManager() {
@Override
public Permit acquirePermit() {
return Permit.ALLOWED;
}
@Override
public void releasePermit(Permit permit) {
// nop
}
@Override
public boolean allowObtainPermits() {
return true;
}
@Override
public boolean disallowObtainPermits(Permit permit) {
return false;
}
@Override
public void close() {
// nop
}
};
/**
* Obetain a permit from permit manager.
*
* @return permit.
*/
Permit acquirePermit();
/**
* Release a given permit.
*
* @param permit
* permit to release
*/
void releasePermit(Permit permit);
/**
* Allow obtaining permits.
*/
boolean allowObtainPermits();
/**
* Disallow obtaining permits. Disallow needs to be performed under the context
* of <i>permit</i>.
*
* @param permit
* permit context to disallow
*/
boolean disallowObtainPermits(Permit permit);
/**
* Release the resources
*/
void close();
}