mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2025-04-04 15:35:18 +00:00
36 lines
1.1 KiB
Rust
36 lines
1.1 KiB
Rust
use crate::types::NetworkInfo;
|
|
use jsonrpsee::core::RpcResult;
|
|
use jsonrpsee::proc_macros::rpc;
|
|
use std::collections::HashMap;
|
|
use sync::FileSyncInfo;
|
|
|
|
#[rpc(server, client, namespace = "admin")]
|
|
pub trait Rpc {
|
|
#[method(name = "shutdown")]
|
|
async fn shutdown(&self) -> RpcResult<()>;
|
|
|
|
#[method(name = "startSyncFile")]
|
|
async fn start_sync_file(&self, tx_seq: u64) -> RpcResult<()>;
|
|
|
|
#[method(name = "startSyncChunks")]
|
|
async fn start_sync_chunks(
|
|
&self,
|
|
tx_seq: u64,
|
|
start_index: u64,
|
|
end_index: u64, // exclusive
|
|
) -> RpcResult<()>;
|
|
|
|
/// Terminate file or chunks sync for specified tx_seq.
|
|
#[method(name = "terminateSync")]
|
|
async fn terminate_sync(&self, tx_seq: u64) -> RpcResult<bool>;
|
|
|
|
#[method(name = "getSyncStatus")]
|
|
async fn get_sync_status(&self, tx_seq: u64) -> RpcResult<String>;
|
|
|
|
#[method(name = "getSyncInfo")]
|
|
async fn get_sync_info(&self, tx_seq: Option<u64>) -> RpcResult<HashMap<u64, FileSyncInfo>>;
|
|
|
|
#[method(name = "getNetworkInfo")]
|
|
async fn get_network_info(&self) -> RpcResult<NetworkInfo>;
|
|
}
|