Class MaterializingIntermediateResultElementSink
java.lang.Object
se.liu.ida.hefquin.engine.queryplan.executable.impl.MaterializingIntermediateResultElementSink
- All Implemented Interfaces:
IntermediateResultElementSink
public class MaterializingIntermediateResultElementSink
extends Object
implements IntermediateResultElementSink
An implementation of
IntermediateResultElementSink
that
materializes all solution mappings that are sent to it directly
into an IntermediateResultBlock
. This block can then be
obtained by calling getMaterializedResultBlock()
.
If more solution mappings are sent to this sink after the block
has been requested, a new block will be started, which can then
be obtained by calling getMaterializedResultBlock()
again.
Attention, this implementation is not thread safe.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns anIntermediateResultBlock
that contains all solution mappings that have been sent to this sink since the last timegetMaterializedResultBlock()
was called or, if this function has not been called so far, since this sink was created.int
Returns the number of solution mappings that have currently been accumulated to be placed in theIntermediateResultBlock
to be returned bygetMaterializedResultBlock()
.void
send
(SolutionMapping element)
-
Field Details
-
blockBuilder
-
-
Constructor Details
-
MaterializingIntermediateResultElementSink
public MaterializingIntermediateResultElementSink()
-
-
Method Details
-
send
- Specified by:
send
in interfaceIntermediateResultElementSink
-
getSizeOfCurrentResultBlock
public int getSizeOfCurrentResultBlock()Returns the number of solution mappings that have currently been accumulated to be placed in theIntermediateResultBlock
to be returned bygetMaterializedResultBlock()
. -
getMaterializedResultBlock
Returns anIntermediateResultBlock
that contains all solution mappings that have been sent to this sink since the last timegetMaterializedResultBlock()
was called or, if this function has not been called so far, since this sink was created.
-