Fix typos in Dragonflow files

Change-Id: Ic0f6e37246641f8266d3115dd9e40262dabba54b
This commit is contained in:
Nguyen Hung Phuong 2016-04-07 13:42:25 +07:00
parent c42fab0a3b
commit 5e512c8569
2 changed files with 4 additions and 4 deletions

View File

@ -46,9 +46,9 @@ with the DB (write/read).
For example: Dragonflow Neutron plugin, the Dragonflow local controller, external applications.
This component was added for one main reason:
We didnt want to expose the DB driver to the internal data schema/model of
We didn't want to expose the DB driver to the internal data schema/model of
Dragonflow.
We didnt want that every new feature in Dragonflow will trigger changes in the various
We didn't want that every new feature in Dragonflow will trigger changes in the various
different DB drivers.
This component has an interface to add/set/delete elements in our model (like logical

View File

@ -83,14 +83,14 @@ r.publish('my-first-channel', 'some data')/* my-first-channel is channel name,
Special Notice:
'Some data' will be coded into json pattern.
Above example ,subscirber which subscribes the channel'my-first-channel'will receive what
Above example ,subscriber which subscribes the channel'my-first-channel'will receive what
is published.
More details please refer Publish / Subscribe section of [1]
Subscribe API
-------------
If you want to receive message that you publish,you first should do a subscription,if you
do not want to to receive message,you should withdraw subscription.
do not want to receive message,you should withdraw subscription.
Realization is based on andymccurdy lib.
Here is a example of subscription process: