Merge "fix the parameter type of input and output"

This commit is contained in:
Jenkins 2016-11-13 10:06:56 +00:00 committed by Gerrit Code Review
commit 0f9d08adcf

View File

@ -72,13 +72,13 @@ and must implement the following methods:
+----------------------+------------------------------------+--------------------------------+--------------------------------+
| Name | Input | Output | Comments |
+======================+====================================+================================+================================+
| get_all | sync mode | void | for snapshot mechanism |
| get_all | sync mode | entities | for snapshot mechanism |
+----------------------+------------------------------------+--------------------------------+--------------------------------+
| get_changes | sync mode | void | for update pulling mechanism |
| get_changes | sync mode | entities | for update pulling mechanism |
+----------------------+------------------------------------+--------------------------------+--------------------------------+
| get_event_types | conf | void | for update pushing mechanism |
| get_event_types | | event types | for update pushing mechanism |
+----------------------+------------------------------------+--------------------------------+--------------------------------+
| enrich_event | event, event_type | void | for update pushing mechanism |
| enrich_event | event, event_type | entity event | for update pushing mechanism |
+----------------------+------------------------------------+--------------------------------+--------------------------------+
@ -113,7 +113,7 @@ must implement the following methods:
+----------------------------------+------------------------------------+----------------------------------------+
| _create_entity_key | entity event | the unique key of this entity |
+----------------------------------+------------------------------------+----------------------------------------+
| get_type | | datasources' type |
| get_type | | datasources type |
+----------------------------------+------------------------------------+----------------------------------------+