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 void
AbstractDocumentationWriter.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 void
XmlDocumentationWriter.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 boolean
RelationshipConfiguration.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 Relationship
Relationship.ANONYMOUS
static final Relationship
Relationship.SELF
Methods 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 TypeMethodDescriptionint
Relationship.compareTo
(Relationship o) boolean
ProcessContext.hasConnection
(Relationship relationship) boolean
ProcessContext.isRelationshipRetried
(Relationship relationship) void
ProcessSession.transfer
(Collection<FlowFile> flowFiles, Relationship relationship) Transfers the given FlowFile to the appropriate destination processor work queue(s) based on the given relationship.void
ProcessSession.transfer
(FlowFile flowFile, Relationship relationship) Transfers the given FlowFile to the appropriate destination processor work queue(s) based on the given relationship. -
Uses of Relationship in org.apache.nifi.provenance
Methods in org.apache.nifi.provenance with parameters of type RelationshipModifier and TypeMethodDescriptionvoid
ProvenanceReporter.route
(FlowFile flowFile, Relationship relationship) Emits a Provenance Event of typeROUTE
that indicates that the given FlowFile was routed to the givenRelationship
.void
ProvenanceReporter.route
(FlowFile flowFile, Relationship relationship, long processingDuration) Emits a Provenance Event of typeROUTE
that indicates that the given FlowFile was routed to the givenRelationship
.void
ProvenanceReporter.route
(FlowFile flowFile, Relationship relationship, String details) Emits a Provenance Event of typeROUTE
that indicates that the given FlowFile was routed to the givenRelationship
.void
ProvenanceReporter.route
(FlowFile flowFile, Relationship relationship, String details, long processingDuration) Emits a Provenance Event of typeROUTE
that indicates that the given FlowFile was routed to the givenRelationship
.ProvenanceEventBuilder.setRelationship
(Relationship relationship) Sets the to which the FlowFile was routed forProvenanceEventType.ROUTE
events.