Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Raphael
histream
Commits
a90b0f1d
Commit
a90b0f1d
authored
Aug 04, 2015
by
rwm
Browse files
javadoc
parent
2221723e
Changes
1
Show whitespace changes
Inline
Side-by-side
histream-core/src/main/java/de/sekmi/histream/ObservationSupplier.java
View file @
a90b0f1d
...
...
@@ -41,7 +41,31 @@ public interface ObservationSupplier extends Supplier<Observation>, AutoCloseabl
/**
* Retrieve meta information for this supply of observations.
* <p>
* Possible keys are source.id, source.timestamp, etl.strategy
* Possible keys are source.id, source.timestamp, etl.strategy, order.grouped, order.sorted
* <dl>
* <dt>source.id</dt>
* <dd>ID for the source which provides the observations
*
* <dt>source.timestamp</dt>
* <dd>Timestamp when the source data was extracted/downloaded/queried</dd>
*
* <dt>etl.strategy</dt>
* <dd>Strategy how to handle imported data.
* {@code replace-source} will drop any previous imports
* with the same {@code source.id}, {@code replace-visit} will
* delete any previous data with the same patient+visit combination.
* </dd>
*
* <dt>order.grouped</dt>
* <dd>If set to true, guarantees that all facts belonging to the same
* patient+visit combination are provided en bloc.
* </dd>
*
* <dt>order.sorted</dt>
* <dd>If set to true, guarantees that all facts within the same
* patient+visit combination occur in ascending order of start timestamp.
* </dd>
* </dl>
* @param key meta key
* @return value for the meta key
*/
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment