Tabnine Logo
Client.getParcelProcessingState
Code IndexAdd Tabnine to your IDE (free)

How to use
getParcelProcessingState
method
in
com.icodici.universa.node2.network.Client

Best Java code snippets using com.icodici.universa.node2.network.Client.getParcelProcessingState (Showing top 2 results out of 315)

origin: UniversaBlockchain/universa

public Node.ParcelProcessingState getParcelProcessingState(HashId id) throws ClientError {
  return client.getParcelProcessingState(id);
}
origin: UniversaBlockchain/universa

try {
  Parcel parcel = Parcel.unpack(packed);
  Node.ParcelProcessingState pState = getParcelProcessingState(parcel.getId());
  int interval = 1000;
  while (Instant.now().isBefore(end) && pState.isProcessing()) {
    interval -= 350;
    interval = Math.max(interval, 300);
    pState = getParcelProcessingState(parcel.getId());
com.icodici.universa.node2.networkClientgetParcelProcessingState

Javadoc

Get processing state of given parcel

Popular methods of Client

  • getState
  • <init>
    Create new client protocol session. It loads network configuration and creates client protocol sessi
  • getClient
  • getNodes
    Get list of nodes in
  • ping
  • register
    Register contract on the network without payment. May require special client key / network configura
  • command
    Execude custom command on the node
  • getNodeNumber
    Get number of node cliet connection is established with
  • getVersion
    Get network version
  • registerParcelWithState
    Register contract on the network with parcel (includes payment) and wait for some of the final ItemS
  • getSession
    Get session of http client connected to node with given number
  • getStats
    Get extended statistics of the node including by-day payments in "U". Accessible to node owners (wit
  • getSession,
  • getStats,
  • queryContract,
  • resyncItem,
  • setVerboseLevel,
  • size,
  • followerGetRate,
  • getBody,
  • getContract

Popular in Java

  • Creating JSON documents from java classes using gson
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getApplicationContext (Context)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now