All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jd.blockchain.consensus.service.StateSnapshot Maven / Gradle / Ivy

The newest version!
package com.jd.blockchain.consensus.service;

/**
 * 状态快照;
 *
 * @author huanghaiquan
 */
public interface StateSnapshot {

    /**
     * 状态的唯一编号;
     *
     * @return
     */
    long getId();

    /**
     * 状态的快照数据;
     *
     * @return
     */
    byte[] getSnapshot();

    /**
     * 时间
     *
     * @return
     */
    long getTimestamp();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy