Uses of Class
org.apache.nifi.processor.Relationship
Packages that use Relationship
Package
Description
-
Uses of Relationship in org.apache.nifi.documentation
Method parameters in org.apache.nifi.documentation with type arguments of type RelationshipModifier and TypeMethodDescriptionprotected abstract voidAbstractDocumentationWriter.writeRelationships(Set<Relationship> relationships) -
Uses of Relationship in org.apache.nifi.documentation.xml
Method parameters in org.apache.nifi.documentation.xml with type arguments of type RelationshipModifier and TypeMethodDescriptionprotected voidXmlDocumentationWriter.writeRelationships(Set<Relationship> relationships) -
Uses of Relationship in org.apache.nifi.migration
Methods in org.apache.nifi.migration with parameters of type RelationshipModifier and TypeMethodDescriptiondefault booleanRelationshipConfiguration.hasRelationship(Relationship relationship) Indicates whether or not the relationship with the given name exists in the configuration -
Uses of Relationship in org.apache.nifi.processor
Fields in org.apache.nifi.processor declared as RelationshipModifier and TypeFieldDescriptionstatic final RelationshipRelationship.ANONYMOUSstatic final RelationshipRelationship.SELFMethods in org.apache.nifi.processor that return RelationshipMethods in org.apache.nifi.processor that return types with arguments of type RelationshipModifier and TypeMethodDescriptionProcessContext.getAvailableRelationships()AbstractSessionFactoryProcessor.getRelationships()Processor.getRelationships()Methods in org.apache.nifi.processor with parameters of type RelationshipModifier and TypeMethodDescriptionintRelationship.compareTo(Relationship o) booleanProcessContext.hasConnection(Relationship relationship) booleanProcessContext.isAutoTerminated(Relationship relationship) Indicates whether or not the given relationship is configured to be auto-terminatedbooleanProcessContext.isRelationshipRetried(Relationship relationship) voidProcessSession.transfer(Collection<FlowFile> flowFiles, Relationship relationship) Transfers the givenFlowFiles to the appropriate destination processor work queue(s) based on the givenrelationship.voidProcessSession.transfer(FlowFile flowFile, Relationship relationship) Transfers the givenFlowFileto the appropriate destination processor work queue(s) based on the givenrelationship. -
Uses of Relationship in org.apache.nifi.provenance
Methods in org.apache.nifi.provenance with parameters of type RelationshipModifier and TypeMethodDescriptionvoidProvenanceReporter.route(FlowFile flowFile, Relationship relationship) Emits a Provenance Event of typeROUTEthat indicates that the given FlowFile was routed to the givenRelationship.voidProvenanceReporter.route(FlowFile flowFile, Relationship relationship, long processingDuration) Emits a Provenance Event of typeROUTEthat indicates that the given FlowFile was routed to the givenRelationship.voidProvenanceReporter.route(FlowFile flowFile, Relationship relationship, String details) Emits a Provenance Event of typeROUTEthat indicates that the given FlowFile was routed to the givenRelationship.voidProvenanceReporter.route(FlowFile flowFile, Relationship relationship, String details, long processingDuration) Emits a Provenance Event of typeROUTEthat indicates that the given FlowFile was routed to the givenRelationship.ProvenanceEventBuilder.setRelationship(Relationship relationship) Sets the to which the FlowFile was routed forProvenanceEventType.ROUTEevents.