1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
use super::super::super::common_types::*;
use super::EndpointTrait;

pub trait ReaderTrait : EndpointTrait {
    fn expects_inline_qos(&self) -> bool {
        false
    }

    fn heartbeat_response_delay(&self) -> Duration {
        Duration::new(1,0)
    }

    fn heartbeat_supression_duration(&self) -> Duration {
        Duration::new(1,0)
    }
}