-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Normally, virtual dispatch will consider a valid target any method in the inheriting classes that is a viable implementation of the callable ( What you are seeing here could probably be happening because the paths that go from source to sink only go through |
Beta Was this translation helpful? Give feedback.
Normally, virtual dispatch will consider a valid target any method in the inheriting classes that is a viable implementation of the callable (
append
in this case), so the data flow library should be considering all implementations of theAppender
interface.What you are seeing here could probably be happening because the paths that go from source to sink only go through
RoutingAppender
, and not any other implementation ofAppender
. Alternatively, there are paths that go through the other implementations, but the flow is being lost in there for some reason, and thus the query isn't reporting the path. Have you reviewed those other implementations and confirmed whether they end up reaching …