Repository: nifi Updated Branches: refs/heads/master 9e54a3d26 -> 61a2054b3
NIFI-2046 - Adding reference to @TriggerSerially in Processor javadoc This closes #549 Signed-off-by: jpercivall <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/61a2054b Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/61a2054b Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/61a2054b Branch: refs/heads/master Commit: 61a2054b38f53ca2cd26f111c7dbc7772bf5e825 Parents: 9e54a3d Author: Bryan Rosander <[email protected]> Authored: Mon Jun 20 14:22:02 2016 -0400 Committer: jpercivall <[email protected]> Committed: Tue Jun 21 17:31:09 2016 -0400 ---------------------------------------------------------------------- nifi-api/src/main/java/org/apache/nifi/processor/Processor.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/61a2054b/nifi-api/src/main/java/org/apache/nifi/processor/Processor.java ---------------------------------------------------------------------- diff --git a/nifi-api/src/main/java/org/apache/nifi/processor/Processor.java b/nifi-api/src/main/java/org/apache/nifi/processor/Processor.java index 53c7c70..98efc68 100644 --- a/nifi-api/src/main/java/org/apache/nifi/processor/Processor.java +++ b/nifi-api/src/main/java/org/apache/nifi/processor/Processor.java @@ -67,8 +67,9 @@ public interface Processor extends ConfigurableComponent { /** * <p> * The method called when this processor is triggered to operate by the - * controller. This method may be called concurrently from different - * threads. When this method is called depends on how this processor is + * controller. In the absence of the {@link org.apache.nifi.annotation.behavior.TriggerSerially} annotation, + * this method may be called concurrently from different threads. + * When this method is called depends on how this processor is * configured within a controller to be triggered (timing or event * based).</p> *
