You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iota.apache.org by to...@apache.org on 2016/07/08 01:05:31 UTC

[2/2] incubator-iota git commit: [IOTA-24] Offer control-aware mailbox to Performers

[IOTA-24] Offer control-aware mailbox to Performers

Updating README.md to reflect the new configuration


Project: http://git-wip-us.apache.org/repos/asf/incubator-iota/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-iota/commit/40f6adb2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-iota/tree/40f6adb2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-iota/diff/40f6adb2

Branch: refs/heads/master
Commit: 40f6adb253701ee910067d45559e1f283b7e5309
Parents: 9126d53
Author: Barbara Gomes <ba...@gmail.com>
Authored: Wed Jul 6 15:08:03 2016 -0700
Committer: Barbara Gomes <ba...@gmail.com>
Committed: Wed Jul 6 15:08:03 2016 -0700

----------------------------------------------------------------------
 fey-core/README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/40f6adb2/fey-core/README.md
----------------------------------------------------------------------
diff --git a/fey-core/README.md b/fey-core/README.md
index 2be8565..d61ab0d 100644
--- a/fey-core/README.md
+++ b/fey-core/README.md
@@ -152,7 +152,8 @@ For Fey, each Performer represents a Generic Actor which should have the followi
 | Property                    | Type                 | Description   |
 | :---------------------- | :------------------- | :------------ |
 | **guid** | String | Must be a unique ID inside the Ensemble |
-| **loadBalance** | Integer | `Optional` property. Tells if the actor should be a load balanced actor. If zero or not specified, the actor will be started without the load balancing property. If greater than zero, the actor will be started using load balancing and the max number of replicated actors is the specified number. It means that if the value is 10, then the actor will be a load balanced actor and it can scale up to 10 replicas. |
+| **controlAware** | Boolean | `Optional` property. Tells if the actor should use a Control aware Mailbox, so the Control messages have higher priority over the others. If not specified then the actor will use the Default mailbox.
+| **autoScale** | Integer | `Optional` property. Tells if the actor should be a load balanced actor. If zero or not specified, the actor will be started without the load balancing property. If greater than zero, the actor will be started using load balancing and the max number of replicated actors is the specified number. It means that if the value is 10, then the actor will be a load balanced actor and it can scale up to 10 replicas. |
 | **schedule** | Integer | Defines the time interval in `Milliseconds` for the actor [scheduler](#markdown-header-scheduler). If zero, no scheduler will be started. |
 | **backoff** | Integer | Defines the time window in `Milliseconds` that the actor should backoff after receiving a PROCESS message. (See [Handling Backoff](#markdown-header-handling-backoff) for more details.) |
 | **source** | Object | Defines the needed information used by Fey to load the GenericActor. See [Source](#markdown-header-source-property) for details.