Class BaseStore
Assembly: Libplanet.dll
Syntax
public abstract class BaseStore : IStore
Methods
|
Improve this Doc
View Source
AppendIndex(String, HashDigest<SHA256>)
Declaration
public abstract long AppendIndex(string namespace, HashDigest<SHA256> hash)
Parameters
Returns
|
Improve this Doc
View Source
CountBlocks()
Declaration
public long CountBlocks()
Returns
|
Improve this Doc
View Source
CountIndex(String)
Declaration
public abstract long CountIndex(string namespace)
Parameters
Type |
Name |
Description |
String |
namespace |
|
Returns
|
Improve this Doc
View Source
CountTransactions()
Declaration
public long CountTransactions()
Returns
|
Improve this Doc
View Source
DeleteBlock(HashDigest<SHA256>)
Declaration
public abstract bool DeleteBlock(HashDigest<SHA256> blockHash)
Parameters
Returns
|
Improve this Doc
View Source
DeleteIndex(String, HashDigest<SHA256>)
Declaration
public abstract bool DeleteIndex(string namespace, HashDigest<SHA256> hash)
Parameters
Returns
|
Improve this Doc
View Source
DeleteTransaction(TxId)
Declaration
public abstract bool DeleteTransaction(TxId txid)
Parameters
Type |
Name |
Description |
TxId |
txid |
|
Returns
|
Improve this Doc
View Source
ForkStateReferences<T>(String, String, Block<T>, IImmutableSet<Address>)
Declaration
public abstract void ForkStateReferences<T>(string sourceNamespace, string destinationNamespace, Block<T> branchPoint, IImmutableSet<Address> addressesToStrip)
where T : IAction, new()
Parameters
Type Parameters
|
Improve this Doc
View Source
ForkTxNonce<T>(String, String, Block<T>, IImmutableSet<Address>)
Declaration
public abstract void ForkTxNonce<T>(string sourceNamespace, string destinationNamespace, Block<T> branchPoint, IImmutableSet<Address> addressesToStrip)
where T : IAction, new()
Parameters
Type Parameters
|
Improve this Doc
View Source
GetBlock<T>(HashDigest<SHA256>)
Declaration
public abstract Block<T> GetBlock<T>(HashDigest<SHA256> blockHash)
where T : IAction, new()
Parameters
Returns
Type |
Description |
Block<T> |
|
Type Parameters
|
Improve this Doc
View Source
GetBlockStates(HashDigest<SHA256>)
Declaration
public abstract AddressStateMap GetBlockStates(HashDigest<SHA256> blockHash)
Parameters
Returns
|
Improve this Doc
View Source
GetTransaction<T>(TxId)
Declaration
public abstract Transaction<T> GetTransaction<T>(TxId txid)
where T : IAction, new()
Parameters
Type |
Name |
Description |
TxId |
txid |
|
Returns
Type Parameters
|
Improve this Doc
View Source
GetTxNonce(String, Address)
Declaration
public abstract long GetTxNonce(string namespace, Address address)
Parameters
Returns
See Also
|
Improve this Doc
View Source
IncreaseTxNonce<T>(String, Block<T>)
Declaration
public abstract void IncreaseTxNonce<T>(string namespace, Block<T> block)
where T : IAction, new()
Parameters
Type Parameters
|
Improve this Doc
View Source
IndexBlockHash(String, Int64)
Declaration
public abstract HashDigest<SHA256>? IndexBlockHash(string namespace, long index)
Parameters
Returns
|
Improve this Doc
View Source
IterateBlockHashes()
Declaration
public abstract IEnumerable<HashDigest<SHA256>> IterateBlockHashes()
Returns
|
Improve this Doc
View Source
IterateIndex(String)
Declaration
public abstract IEnumerable<HashDigest<SHA256>> IterateIndex(string namespace)
Parameters
Type |
Name |
Description |
String |
namespace |
|
Returns
|
Improve this Doc
View Source
IterateStagedTransactionIds()
Declaration
public abstract IEnumerable<TxId> IterateStagedTransactionIds()
Returns
|
Improve this Doc
View Source
IterateTransactionIds()
Declaration
public abstract IEnumerable<TxId> IterateTransactionIds()
Returns
|
Improve this Doc
View Source
ListNamespaces()
Lists existing namespaces.
Declaration
public abstract IEnumerable<string> ListNamespaces()
Returns
|
Improve this Doc
View Source
LookupStateReference<T>(String, Address, Block<T>)
Declaration
public abstract HashDigest<SHA256>? LookupStateReference<T>(string namespace, Address address, Block<T> lookupUntil)
where T : IAction, new()
Parameters
Returns
Type Parameters
|
Improve this Doc
View Source
PutBlock<T>(Block<T>)
Declaration
public abstract void PutBlock<T>(Block<T> block)
where T : IAction, new()
Parameters
Type |
Name |
Description |
Block<T> |
block |
|
Type Parameters
|
Improve this Doc
View Source
PutTransaction<T>(Transaction<T>)
Declaration
public abstract void PutTransaction<T>(Transaction<T> tx)
where T : IAction, new()
Parameters
Type Parameters
|
Improve this Doc
View Source
SetBlockStates(HashDigest<SHA256>, AddressStateMap)
Declaration
public abstract void SetBlockStates(HashDigest<SHA256> blockHash, AddressStateMap states)
Parameters
|
Improve this Doc
View Source
StageTransactionIds(ISet<TxId>)
Declaration
public abstract void StageTransactionIds(ISet<TxId> txids)
Parameters
|
Improve this Doc
View Source
StoreStateReference<T>(String, IImmutableSet<Address>, Block<T>)
Declaration
public abstract void StoreStateReference<T>(string namespace, IImmutableSet<Address> addresses, Block<T> block)
where T : IAction, new()
Parameters
Type Parameters
|
Improve this Doc
View Source
UnstageTransactionIds(ISet<TxId>)
Declaration
public abstract void UnstageTransactionIds(ISet<TxId> txids)
Parameters
Implements