From 3aeb20d68f969216a127585a91eebede4911230f Mon Sep 17 00:00:00 2001 From: Ferris Tseng Date: Tue, 24 Dec 2019 17:05:04 -0500 Subject: add example for tailing log --- ipfs-api/examples/log_tail.rs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ipfs-api/examples/log_tail.rs diff --git a/ipfs-api/examples/log_tail.rs b/ipfs-api/examples/log_tail.rs new file mode 100644 index 0000000..79c8253 --- /dev/null +++ b/ipfs-api/examples/log_tail.rs @@ -0,0 +1,31 @@ +// Copyright 2019 rust-ipfs-api Developers +// +// Licensed under the Apache License, Version 2.0, or the MIT license , at your option. This file may not be +// copied, modified, or distributed except according to those terms. +// + +use futures::{future, TryStreamExt}; +use ipfs_api::IpfsClient; + +// Tails the log of IPFS. +// +#[tokio::main] +async fn main() { + eprintln!("connecting to localhost:5001..."); + + let client = IpfsClient::default(); + + if let Err(e) = client + .log_tail() + .try_for_each(|line| { + println!("{}", line); + + future::ok(()) + }) + .await + { + eprintln!("error getting tail of log: {}", e); + } +} -- cgit v1.2.3