pub trait FeedbackFactory<F, I, S, T>where
    F: Feedback<I, S>,
    I: Input,
    S: HasClientPerfMonitor,
{ fn create_feedback(&self, ctx: &T) -> F; }
Expand description

Factory for feedbacks which should be sensitive to an existing context, e.g. observer(s) from a specific execution

Required Methods

Create the feedback from the provided context

Implementors