| Package | Description |
|---|---|
| com.artipie.asto |
Abstract Storage.
|
| com.artipie.asto.fs |
File system implementation of asto.
|
| com.artipie.asto.google |
Google storage.
|
| com.artipie.asto.memory |
In memory implementation of Storage.
|
| com.artipie.asto.rx |
RxJava version of asto.
|
| com.artipie.asto.s3 |
Implementation of storage that holds data in S3.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
Content.From
Key built from byte buffers publisher and total size if it is known.
|
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Content> |
Storage.value(Key key)
Obtain bytes by key.
|
CompletableFuture<Content> |
Storage.Wrap.value(Key key) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Void> |
Storage.save(Key key,
Content content)
Saves the bytes to the specified key.
|
CompletableFuture<Void> |
Storage.Wrap.save(Key key,
Content content) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Content> |
FileStorage.value(Key key) |
CompletableFuture<Content> |
FileSystemTransaction.value(Key key) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Void> |
FileStorage.save(Key key,
Content content) |
CompletableFuture<Void> |
FileSystemTransaction.save(Key key,
Content content) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Content> |
GoogleStorage.value(Key key) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Void> |
GoogleStorage.save(Key key,
Content content) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Content> |
InMemoryTransaction.value(Key key) |
CompletableFuture<Content> |
InMemoryStorage.value(Key key) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Void> |
InMemoryTransaction.save(Key key,
Content content) |
CompletableFuture<Void> |
InMemoryStorage.save(Key key,
Content content) |
| Modifier and Type | Method and Description |
|---|---|
io.reactivex.Single<Content> |
RxStorage.value(Key key)
Obtain bytes by key.
|
io.reactivex.Single<Content> |
RxStorageWrapper.value(Key key)
Obtain bytes by key.
|
io.reactivex.Single<Content> |
RxTransactionWrapper.value(Key key) |
| Modifier and Type | Method and Description |
|---|---|
io.reactivex.Completable |
RxStorage.save(Key key,
Content content)
Saves the bytes to the specified key.
|
io.reactivex.Completable |
RxStorageWrapper.save(Key key,
Content content)
Saves the bytes to the specified key.
|
io.reactivex.Completable |
RxTransactionWrapper.save(Key key,
Content content) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Content> |
S3Storage.value(Key key) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Void> |
S3Storage.save(Key key,
Content content) |
Copyright © 2019–2020 jcabi.com. All rights reserved.