Метод | Описание | |
---|---|---|
AppendAsync ( IFdbTransaction trans, Slice data ) : System.Threading.Tasks.Task |
Append the contents of data onto the end of the blob.
|
|
Delete ( IFdbTransaction trans ) : void |
Delete all key-value pairs associated with the blob.
|
|
FdbBlob ( FdbSubspace subspace ) : FoundationDB.Client |
Create a new object representing a binary large object (blob). Only keys within the subspace will be used by the object. Other clients of the database should refrain from modifying the subspace.
|
|
GetSizeAsync ( IFdbReadOnlyTransaction trans ) : Task |
Get the size (in bytes) of the blob.
|
|
ReadAsync ( IFdbReadOnlyTransaction trans, long offset, int n ) : Task |
Read from the blob, starting at offset, retrieving up to n bytes (fewer then n bytes are returned when the end of the blob is reached).
|
|
TruncateAsync ( IFdbTransaction trans, long newLength ) : System.Threading.Tasks.Task |
Change the blob length to newLength, erasing any data when shrinking, and filling new bytes with 0 when growing.
|
|
WriteAsync ( IFdbTransaction trans, long offset, Slice data ) : System.Threading.Tasks.Task |
Write data to the blob, starting at and overwriting any existing data at that location. The length of the blob is increased if necessary.
|
Метод | Описание | |
---|---|---|
AttributeKey ( string name ) : Slice | ||
DataKey ( long offset ) : Slice |
Returns the key for data chunk at the specified offset
|
|
DataKeyOffset ( Slice key ) : long | ||
SizeKey ( ) : Slice |
Метод | Описание | |
---|---|---|
GetChunkAtAsync ( IFdbTransaction trans, long offset ) : Task |
||
MakeSparseAsync ( IFdbTransaction trans, long start, long end ) : System.Threading.Tasks.Task | ||
MakeSplitPointAsync ( IFdbTransaction trans, long offset ) : System.Threading.Tasks.Task | ||
SetSize ( IFdbTransaction trans, long size ) : void | ||
TryRemoteSplitPointAsync ( IFdbTransaction trans, long offset ) : Task |
||
WriteToSparse ( IFdbTransaction trans, long offset, Slice data ) : void |
public AppendAsync ( IFdbTransaction trans, Slice data ) : System.Threading.Tasks.Task | ||
trans | IFdbTransaction | |
data | Slice | |
Результат | System.Threading.Tasks.Task |
protected AttributeKey ( string name ) : Slice | ||
name | string | |
Результат | Slice |
protected DataKeyOffset ( Slice key ) : long | ||
key | Slice | |
Результат | long |
public Delete ( IFdbTransaction trans ) : void | ||
trans | IFdbTransaction | |
Результат | void |
public FdbBlob ( FdbSubspace subspace ) : FoundationDB.Client | ||
subspace | FdbSubspace | Subspace to be used for storing the blob data and metadata |
Результат | FoundationDB.Client |
public GetSizeAsync ( IFdbReadOnlyTransaction trans ) : Task |
||
trans | IFdbReadOnlyTransaction | |
Результат | Task |
public ReadAsync ( IFdbReadOnlyTransaction trans, long offset, int n ) : Task |
||
trans | IFdbReadOnlyTransaction | |
offset | long | |
n | int | |
Результат | Task |
public TruncateAsync ( IFdbTransaction trans, long newLength ) : System.Threading.Tasks.Task | ||
trans | IFdbTransaction | |
newLength | long | |
Результат | System.Threading.Tasks.Task |
public WriteAsync ( IFdbTransaction trans, long offset, Slice data ) : System.Threading.Tasks.Task | ||
trans | IFdbTransaction | |
offset | long | |
data | Slice | |
Результат | System.Threading.Tasks.Task |