-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AmazonS3Reference, Javadoc & other feedback
- Loading branch information
1 parent
469828c
commit 5ae961c
Showing
5 changed files
with
132 additions
and
94 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
plugins/repository-s3/src/main/java/org/elasticsearch/repositories/s3/AmazonS3Reference.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,62 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch 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.elasticsearch.repositories.s3; | ||
|
||
import org.elasticsearch.common.util.concurrent.AbstractRefCounted; | ||
import com.amazonaws.services.s3.AmazonS3; | ||
import com.amazonaws.services.s3.AmazonS3Client; | ||
|
||
import org.elasticsearch.common.lease.Releasable; | ||
|
||
/** | ||
* Handles the shutdown of the internal {@link AmazonS3Client} by reference | ||
* counting. | ||
*/ | ||
public class AmazonS3Reference extends AbstractRefCounted implements Releasable { | ||
|
||
private final AmazonS3 client; | ||
|
||
AmazonS3Reference(AmazonS3 client) { | ||
super("AWS_S3_CLIENT"); | ||
this.client = client; | ||
} | ||
|
||
/** | ||
* Call when the client is not needed anymore. | ||
*/ | ||
@Override | ||
public void close() { | ||
decRef(); | ||
} | ||
|
||
/** | ||
* Returns the underlying `AmazonS3` client. All calls are permitted BUT NOT | ||
* shutdown. Shutdown is called on 0 reference count. | ||
*/ | ||
public AmazonS3 client() { | ||
return client; | ||
} | ||
|
||
@Override | ||
protected void closeInternal() { | ||
client.shutdown(); | ||
} | ||
|
||
} |
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
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
Oops, something went wrong.