Skip navigation links
B C D E F G H I K L M P R S T V W 

B

BlockingStorage - Class in com.artipie.asto.blocking
More primitive and easy to use wrapper to use Storage.
BlockingStorage(Storage) - Constructor for class com.artipie.asto.blocking.BlockingStorage
Wrap a Storage in order get a blocking version of it.
boxedBytes() - Method in class com.artipie.asto.ByteArray
Return primitive byte array.
ByteArray - Class in com.artipie.asto
Byte array wrapper with ability to transform it to boxed and primitive array.
ByteArray(List<Byte>) - Constructor for class com.artipie.asto.ByteArray
Ctor for a list of byes.
ByteArray(byte[]) - Constructor for class com.artipie.asto.ByteArray
Ctor for a primitive array.
ByteArray(Byte[]) - Constructor for class com.artipie.asto.ByteArray
Ctor.
bytes() - Method in class com.artipie.asto.Remaining
Obtain remaining bytes.

C

com.artipie.asto - package com.artipie.asto
Abstract Storage.
com.artipie.asto.blocking - package com.artipie.asto.blocking
Blocking version of asto.
com.artipie.asto.fs - package com.artipie.asto.fs
File system implementation of asto.
com.artipie.asto.google - package com.artipie.asto.google
Google storage.
com.artipie.asto.memory - package com.artipie.asto.memory
In memory implementation of Storage.
com.artipie.asto.rx - package com.artipie.asto.rx
RxJava version of asto.
com.artipie.asto.s3 - package com.artipie.asto.s3
Implementation of storage that holds data in S3.
commit() - Method in class com.artipie.asto.fs.FileSystemTransaction
 
commit() - Method in class com.artipie.asto.memory.InMemoryTransaction
 
commit() - Method in interface com.artipie.asto.rx.RxTransaction
A reactive version of Transaction.commit().
commit() - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
commit() - Method in interface com.artipie.asto.Transaction
Commit the transaction.
Concatenation - Class in com.artipie.asto
Concatenation of ByteBuffer instances.
Concatenation(Publisher<ByteBuffer>) - Constructor for class com.artipie.asto.Concatenation
Ctor.
Content - Interface in com.artipie.asto
Content that can be stored in Storage.
Content.From - Class in com.artipie.asto
Key built from byte buffers publisher and total size if it is known.

D

delete(Key) - Method in class com.artipie.asto.blocking.BlockingStorage
Removes value from storage.
delete(Key) - Method in class com.artipie.asto.fs.FileStorage
 
delete(Key) - Method in class com.artipie.asto.fs.FileSystemTransaction
 
delete() - Method in class com.artipie.asto.fs.RxFile
Delete file.
delete(Key) - Method in class com.artipie.asto.google.GoogleStorage
 
delete(Key) - Method in class com.artipie.asto.memory.InMemoryStorage
 
delete(Key) - Method in class com.artipie.asto.memory.InMemoryTransaction
 
delete(Key) - Method in interface com.artipie.asto.rx.RxStorage
Removes value from storage.
delete(Key) - Method in class com.artipie.asto.rx.RxStorageWrapper
 
delete(Key) - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
delete(Key) - Method in class com.artipie.asto.s3.S3Storage
 
delete(Key) - Method in interface com.artipie.asto.Storage
Removes value from storage.
delete(Key) - Method in class com.artipie.asto.Storage.Wrap
 

E

equals(Object) - Method in class com.artipie.asto.Key.From
 
exists(Key) - Method in class com.artipie.asto.blocking.BlockingStorage
This file exists?
exists(Key) - Method in class com.artipie.asto.fs.FileStorage
 
exists(Key) - Method in class com.artipie.asto.fs.FileSystemTransaction
 
exists(Key) - Method in class com.artipie.asto.google.GoogleStorage
 
exists(Key) - Method in class com.artipie.asto.memory.InMemoryStorage
 
exists(Key) - Method in class com.artipie.asto.memory.InMemoryTransaction
 
exists(Key) - Method in interface com.artipie.asto.rx.RxStorage
This file exists?
exists(Key) - Method in class com.artipie.asto.rx.RxStorageWrapper
This file exists?
exists(Key) - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
exists(Key) - Method in class com.artipie.asto.s3.S3Storage
 
exists(Key) - Method in interface com.artipie.asto.Storage
This file exists?
exists(Key) - Method in class com.artipie.asto.Storage.Wrap
 

F

FileStorage - Class in com.artipie.asto.fs
Simple storage, in files.
FileStorage(Path, FileSystem) - Constructor for class com.artipie.asto.fs.FileStorage
Ctor.
FileSystemTransaction - Class in com.artipie.asto.fs
Transaction on FileStorage.
FileSystemTransaction(Storage) - Constructor for class com.artipie.asto.fs.FileSystemTransaction
Ctor.
flow() - Method in class com.artipie.asto.fs.RxFile
Read file content as a flow of bytes.
From(byte[]) - Constructor for class com.artipie.asto.Content.From
Ctor.
From(Publisher<ByteBuffer>) - Constructor for class com.artipie.asto.Content.From
Ctor.
From(long, Publisher<ByteBuffer>) - Constructor for class com.artipie.asto.Content.From
Ctor.
From(Optional<Long>, Publisher<ByteBuffer>) - Constructor for class com.artipie.asto.Content.From
Ctor.
From(String) - Constructor for class com.artipie.asto.Key.From
Ctor.
From(String...) - Constructor for class com.artipie.asto.Key.From
Ctor.
From(Key, String...) - Constructor for class com.artipie.asto.Key.From
From base path and parts.
From(List<String>) - Constructor for class com.artipie.asto.Key.From
Ctor.

G

GoogleStorage - Class in com.artipie.asto.google
Storage that holds data in Google storage.
GoogleStorage(Vertx, WebClient, String) - Constructor for class com.artipie.asto.google.GoogleStorage
Ctor.

H

hashCode() - Method in class com.artipie.asto.Key.From
 

I

InMemoryStorage - Class in com.artipie.asto.memory
Simple implementation of Storage that holds all data in memory.
InMemoryStorage() - Constructor for class com.artipie.asto.memory.InMemoryStorage
Ctor.
InMemoryTransaction - Class in com.artipie.asto.memory
Transaction on InMemoryStorage.
InMemoryTransaction(Storage) - Constructor for class com.artipie.asto.memory.InMemoryTransaction
Ctor.

K

Key - Interface in com.artipie.asto
Storage key.
Key.From - Class in com.artipie.asto
Key from something.
Key.Wrap - Class in com.artipie.asto
Default decorator.

L

list(Key) - Method in class com.artipie.asto.blocking.BlockingStorage
Return the list of keys that start with this prefix, for example "foo/bar/".
list(Key) - Method in class com.artipie.asto.fs.FileStorage
 
list(Key) - Method in class com.artipie.asto.fs.FileSystemTransaction
 
list(Key) - Method in class com.artipie.asto.google.GoogleStorage
 
list(Key) - Method in class com.artipie.asto.memory.InMemoryStorage
 
list(Key) - Method in class com.artipie.asto.memory.InMemoryTransaction
 
list(Key) - Method in interface com.artipie.asto.rx.RxStorage
Return the list of keys that start with this prefix, for example "foo/bar/".
list(Key) - Method in class com.artipie.asto.rx.RxStorageWrapper
 
list(Key) - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
list(Key) - Method in class com.artipie.asto.s3.S3Storage
 
list(Key) - Method in interface com.artipie.asto.Storage
Return the list of keys that start with this prefix, for example "foo/bar/".
list(Key) - Method in class com.artipie.asto.Storage.Wrap
 

M

move(Key, Key) - Method in class com.artipie.asto.blocking.BlockingStorage
Moves value from one location to another.
move(Key, Key) - Method in class com.artipie.asto.fs.FileStorage
 
move(Key, Key) - Method in class com.artipie.asto.fs.FileSystemTransaction
 
move(Path) - Method in class com.artipie.asto.fs.RxFile
Move file to new location.
move(Key, Key) - Method in class com.artipie.asto.google.GoogleStorage
 
move(Key, Key) - Method in class com.artipie.asto.memory.InMemoryStorage
 
move(Key, Key) - Method in class com.artipie.asto.memory.InMemoryTransaction
 
move(Key, Key) - Method in interface com.artipie.asto.rx.RxStorage
Moves value from one location to another.
move(Key, Key) - Method in class com.artipie.asto.rx.RxStorageWrapper
 
move(Key, Key) - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
move(Key, Key) - Method in class com.artipie.asto.s3.S3Storage
 
move(Key, Key) - Method in interface com.artipie.asto.Storage
Moves value from one location to another.
move(Key, Key) - Method in class com.artipie.asto.Storage.Wrap
 

P

parent() - Method in class com.artipie.asto.Key.From
 
parent() - Method in interface com.artipie.asto.Key
Parent key.
parent() - Method in class com.artipie.asto.Key.Wrap
 
primitiveBytes() - Method in class com.artipie.asto.ByteArray
Return primitive byte array.

R

Remaining - Class in com.artipie.asto
Remaining bytes in a byte buffer.
Remaining(ByteBuffer) - Constructor for class com.artipie.asto.Remaining
Ctor.
Remaining(ByteBuffer, boolean) - Constructor for class com.artipie.asto.Remaining
Ctor.
rollback() - Method in class com.artipie.asto.fs.FileSystemTransaction
 
rollback() - Method in class com.artipie.asto.memory.InMemoryTransaction
 
rollback() - Method in interface com.artipie.asto.rx.RxTransaction
A reactive version of Transaction.rollback().
rollback() - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
rollback() - Method in interface com.artipie.asto.Transaction
Rollback the transaction.
ROOT - Static variable in interface com.artipie.asto.Key
Root key.
RxFile - Class in com.artipie.asto.fs
The reactive file allows you to perform read and write operations via RxFile.flow() and RxFile.save(Flowable) methods respectively.
RxFile(Path, FileSystem) - Constructor for class com.artipie.asto.fs.RxFile
Ctor.
RxStorage - Interface in com.artipie.asto.rx
A reactive version of Storage.
RxStorageWrapper - Class in com.artipie.asto.rx
Reactive wrapper over Storage.
RxStorageWrapper(Storage) - Constructor for class com.artipie.asto.rx.RxStorageWrapper
Ctor.
RxTransaction - Interface in com.artipie.asto.rx
A reactive version of Transaction.
RxTransactionWrapper - Class in com.artipie.asto.rx
A reactive wrapper of RxTransaction.
RxTransactionWrapper(Transaction) - Constructor for class com.artipie.asto.rx.RxTransactionWrapper
Ctor.

S

S3Storage - Class in com.artipie.asto.s3
Storage that holds data in S3 storage.
S3Storage(S3AsyncClient, String) - Constructor for class com.artipie.asto.s3.S3Storage
Ctor.
save(Key, byte[]) - Method in class com.artipie.asto.blocking.BlockingStorage
Save the content.
save(Key, Content) - Method in class com.artipie.asto.fs.FileStorage
 
save(Key, Content) - Method in class com.artipie.asto.fs.FileSystemTransaction
 
save(Flowable<ByteBuffer>) - Method in class com.artipie.asto.fs.RxFile
Save a flow of bytes to a file.
save(Key, Content) - Method in class com.artipie.asto.google.GoogleStorage
 
save(Key, Content) - Method in class com.artipie.asto.memory.InMemoryStorage
 
save(Key, Content) - Method in class com.artipie.asto.memory.InMemoryTransaction
 
save(Key, Content) - Method in interface com.artipie.asto.rx.RxStorage
Saves the bytes to the specified key.
save(Key, Content) - Method in class com.artipie.asto.rx.RxStorageWrapper
Saves the bytes to the specified key.
save(Key, Content) - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
save(Key, Content) - Method in class com.artipie.asto.s3.S3Storage
 
save(Key, Content) - Method in interface com.artipie.asto.Storage
Saves the bytes to the specified key.
save(Key, Content) - Method in class com.artipie.asto.Storage.Wrap
 
single() - Method in class com.artipie.asto.Concatenation
Concatenates all buffers into single one.
size(Key) - Method in class com.artipie.asto.blocking.BlockingStorage
Get value size.
size() - Method in class com.artipie.asto.Content.From
 
size() - Method in interface com.artipie.asto.Content
Provides size of content in bytes if known.
size(Key) - Method in class com.artipie.asto.fs.FileStorage
 
size(Key) - Method in class com.artipie.asto.fs.FileSystemTransaction
 
size() - Method in class com.artipie.asto.fs.RxFile
Get file size.
size(Key) - Method in class com.artipie.asto.google.GoogleStorage
 
size(Key) - Method in class com.artipie.asto.memory.InMemoryStorage
 
size(Key) - Method in class com.artipie.asto.memory.InMemoryTransaction
 
size(Key) - Method in interface com.artipie.asto.rx.RxStorage
Get value size.
size(Key) - Method in class com.artipie.asto.rx.RxStorageWrapper
 
size(Key) - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
size(Key) - Method in class com.artipie.asto.s3.S3Storage
 
size(Key) - Method in interface com.artipie.asto.Storage
Get value size.
size(Key) - Method in class com.artipie.asto.Storage.Wrap
 
Storage - Interface in com.artipie.asto
The storage.
Storage.Wrap - Class in com.artipie.asto
Forwarding decorator for Storage.
string() - Method in class com.artipie.asto.Key.From
 
string() - Method in interface com.artipie.asto.Key
Key.
string() - Method in class com.artipie.asto.Key.Wrap
 
subscribe(Subscriber<? super ByteBuffer>) - Method in class com.artipie.asto.Content.From
 

T

transaction(List<Key>) - Method in class com.artipie.asto.fs.FileStorage
 
transaction(List<Key>) - Method in class com.artipie.asto.fs.FileSystemTransaction
 
transaction(List<Key>) - Method in class com.artipie.asto.google.GoogleStorage
 
transaction(List<Key>) - Method in class com.artipie.asto.memory.InMemoryStorage
 
transaction(List<Key>) - Method in class com.artipie.asto.memory.InMemoryTransaction
 
transaction(List<Key>) - Method in interface com.artipie.asto.rx.RxStorage
Start a transaction with specified keys.
transaction(List<Key>) - Method in class com.artipie.asto.rx.RxStorageWrapper
Start a transaction with specified keys.
transaction(List<Key>) - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
transaction(List<Key>) - Method in class com.artipie.asto.s3.S3Storage
 
transaction(List<Key>) - Method in interface com.artipie.asto.Storage
Start a transaction with specified keys.
transaction(List<Key>) - Method in class com.artipie.asto.Storage.Wrap
 
Transaction - Interface in com.artipie.asto
Transaction is an atomic operation performed under a certain scope.

V

value(Key) - Method in class com.artipie.asto.blocking.BlockingStorage
Obtain value for the specified key.
value(Key) - Method in class com.artipie.asto.fs.FileStorage
 
value(Key) - Method in class com.artipie.asto.fs.FileSystemTransaction
 
value(Key) - Method in class com.artipie.asto.google.GoogleStorage
 
value(Key) - Method in class com.artipie.asto.memory.InMemoryStorage
 
value(Key) - Method in class com.artipie.asto.memory.InMemoryTransaction
 
value(Key) - Method in interface com.artipie.asto.rx.RxStorage
Obtain bytes by key.
value(Key) - Method in class com.artipie.asto.rx.RxStorageWrapper
Obtain bytes by key.
value(Key) - Method in class com.artipie.asto.rx.RxTransactionWrapper
 
value(Key) - Method in class com.artipie.asto.s3.S3Storage
 
value(Key) - Method in interface com.artipie.asto.Storage
Obtain bytes by key.
value(Key) - Method in class com.artipie.asto.Storage.Wrap
 

W

Wrap(Key) - Constructor for class com.artipie.asto.Key.Wrap
Ctor.
Wrap(Storage) - Constructor for class com.artipie.asto.Storage.Wrap
Ctor.
B C D E F G H I K L M P R S T V W 
Skip navigation links

Copyright © 2019–2020 jcabi.com. All rights reserved.