-
Notifications
You must be signed in to change notification settings - Fork 512
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bindings/java): support ConcurrentLimitLayer (#5168)
Signed-off-by: tison <wander4096@gmail.com>
- Loading branch information
Showing
4 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
bindings/java/src/main/java/org/apache/opendal/layer/ConcurrentLimitLayer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* 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 org.apache.opendal.layer; | ||
|
||
import org.apache.opendal.Layer; | ||
|
||
/** | ||
* Users can control how many concurrent connections could be established between | ||
* OpenDAL and underlying storage services. | ||
* | ||
* @see <a href="https://docs.rs/opendal/latest/opendal/layers/struct.ConcurrentLimitLayer.html">ConcurrentLimitLayer's rustdoc</a> | ||
*/ | ||
public class ConcurrentLimitLayer extends Layer { | ||
private final long permits; | ||
|
||
/** | ||
* Create a new ConcurrentLimitLayer will specify permits. | ||
* | ||
* @param permits concurrent connections could be established | ||
*/ | ||
public ConcurrentLimitLayer(long permits) { | ||
if (permits <= 0) { | ||
throw new IllegalArgumentException("permits must be positive"); | ||
} | ||
|
||
this.permits = permits; | ||
} | ||
|
||
@Override | ||
protected long layer(long nativeOp) { | ||
return doLayer(nativeOp, permits); | ||
} | ||
|
||
private static native long doLayer(long nativeHandle, long permits); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters