Skip to content

Instantly share code, notes, and snippets.

@pardom-zz
Last active November 2, 2016 14:02
Show Gist options
  • Save pardom-zz/cdeac5c9e4723f031414fbcff0fbbf7d to your computer and use it in GitHub Desktop.
Save pardom-zz/cdeac5c9e4723f031414fbcff0fbbf7d to your computer and use it in GitHub Desktop.
interface Middleware<S> {
Object dispatch(StateProvider<S> stateProvier, Object action, Dispatcher next);
interface StateProvider<S> {
S getState();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment