Trait couchdb::action::ChangeHandler [] [src]

pub trait ChangeHandler {
    fn handle_change(&self, ChangeResult);
}

A change handler receives a single change result.

Applications use a change handler when retrieving database changes via a continuous feed.

Required Methods

fn handle_change(&self, ChangeResult)

The library calls this method exactly once for each change result that has been retrieved.

Implementors