2016-07-11 17:02:42 +02:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-08-17 15:54:24 +02:00
|
|
|
use ipc::IpcConfig;
|
2016-12-08 12:03:34 +01:00
|
|
|
use util::{H256, Bytes};
|
2016-07-11 17:02:42 +02:00
|
|
|
|
|
|
|
/// Represents what has to be handled by actor listening to chain events
|
2016-10-04 18:20:16 +02:00
|
|
|
#[ipc]
|
2016-07-11 17:02:42 +02:00
|
|
|
pub trait ChainNotify : Send + Sync {
|
2016-09-05 12:17:21 +02:00
|
|
|
/// fires when chain has new blocks.
|
2016-07-11 17:02:42 +02:00
|
|
|
fn new_blocks(&self,
|
|
|
|
_imported: Vec<H256>,
|
|
|
|
_invalid: Vec<H256>,
|
|
|
|
_enacted: Vec<H256>,
|
|
|
|
_retracted: Vec<H256>,
|
2016-07-20 12:36:20 +02:00
|
|
|
_sealed: Vec<H256>,
|
2016-12-08 12:03:34 +01:00
|
|
|
// Block bytes and total difficulty.
|
|
|
|
_proposed: Vec<Bytes>,
|
2016-07-20 12:36:20 +02:00
|
|
|
_duration: u64) {
|
2016-07-11 17:02:42 +02:00
|
|
|
// does nothing by default
|
|
|
|
}
|
|
|
|
|
|
|
|
/// fires when chain achieves active mode
|
|
|
|
fn start(&self) {
|
|
|
|
// does nothing by default
|
|
|
|
}
|
|
|
|
|
|
|
|
/// fires when chain achieves passive mode
|
|
|
|
fn stop(&self) {
|
|
|
|
// does nothing by default
|
|
|
|
}
|
2016-08-15 14:25:57 +02:00
|
|
|
|
|
|
|
/// fires when chain broadcasts a message
|
2016-08-26 13:16:56 +02:00
|
|
|
fn broadcast(&self, _data: Vec<u8>) {
|
2016-08-15 14:25:57 +02:00
|
|
|
}
|
2016-07-11 17:02:42 +02:00
|
|
|
}
|
2016-07-16 15:51:06 +02:00
|
|
|
|
2016-07-16 19:24:45 +02:00
|
|
|
impl IpcConfig for ChainNotify { }
|