Updating operator development guide
Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/commit/fd24c807 Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/fd24c807 Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/fd24c807 Branch: refs/heads/APEXCORE-293 Commit: fd24c807aee6ce26a2d800e0c3c793caf3ad54f7 Parents: da86ebb Author: sashadt <[email protected]> Authored: Mon Nov 9 14:00:21 2015 -0800 Committer: Thomas Weise <[email protected]> Committed: Sun Feb 28 22:46:38 2016 -0800 ---------------------------------------------------------------------- operator_development.md | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/fd24c807/operator_development.md ---------------------------------------------------------------------- diff --git a/operator_development.md b/operator_development.md index a6a9343..7f887a8 100644 --- a/operator_development.md +++ b/operator_development.md @@ -302,18 +302,15 @@ The operator will exist physically as a class which implements the Operator interface. This interface will require implementations for the following method calls: -``` java -- setup(OperatorContext context) -- beginWindow(long windowId) -- endWindow() -- tearDown() -``` +- setup(OperatorContext context) +- beginWindow(long windowId) +- endWindow() +- tearDown() In order to simplify the creation of an operator, the Apache Apex library also provides a base class âBaseOperatorâ which has empty -implementations for these methods. Please refer to the [Getting -Started](#h.dbmfyx6yasqs) section and the -[Reference](#h.z10k75daf2xl) section for details on these. +implementations for these methods. Please refer to the [Apex Operators](#apex_operators) section and the +[Reference](#operator_reference) section for details on these. We extend the class âBaseOperatorâ to create our own operator âWordCountOperatorâ.
