com.scalar.dl.ledger.database.Database Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalardl-java-client-sdk Show documentation
Show all versions of scalardl-java-client-sdk Show documentation
A client-side Java library to interact with Scalar DL network.
The newest version!
package com.scalar.dl.ledger.database;
import java.util.List;
import java.util.Optional;
/**
* A mutable database abstraction for functions, which can be executed atomically with contracts as
* requested.
*
* @author Hiroyuki Yamada
*/
public interface Database {
Optional get(G get);
List scan(S scan);
void put(P put);
void delete(D delete);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy