From 8e6e122e5006bf88e1f116bf820c547d95f42748 Mon Sep 17 00:00:00 2001 From: mattak Date: Tue, 27 Jun 2017 00:50:10 +0900 Subject: [PATCH] doc(README): api doc for ApplyMiddlewares --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e6385e..9ea1134 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ public static class Count { public ActionType ActionType; } - + // ActionCreators creates actions and deliver payloads // in redux, you do not dispatch from the ActionCreator to allow for easy testability public static class ActionCreator @@ -231,6 +231,11 @@ Get the state as passed to the constructor. Dispatch an event of `TAction` object, which will trigger a `Reducer`. +### `.ApplyMiddlewares(params Middleware[] middlewares)` + +Apply middlewares to Store object +which implement delegate function of [Middleware](Assets/Plugins/Unidux/Scripts/IMiddleware.cs#L5). + ### `.Update()` When at least one reducer has been executed,