-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from RADAR-base/release-0.15.0
Release 0.15.0
- Loading branch information
Showing
34 changed files
with
594 additions
and
300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
slf4jVersion=1.7.32 | ||
confluentVersion=7.0.1 | ||
kafkaVersion=7.0.1-ce | ||
slf4jVersion=1.7.36 | ||
confluentVersion=7.1.1 | ||
kafkaVersion=3.1.0 | ||
avroVersion=1.11.0 | ||
jacksonVersion=2.12.6 | ||
jacksonYamlVersion=2.12.6 | ||
jacksonVersion=2.13.2.20220328 | ||
okhttpVersion=4.9.3 | ||
junitVersion=4.13.2 | ||
mockitoVersion=4.2.0 | ||
mockitoVersion=4.5.1 | ||
hamcrestVersion=1.3 | ||
radarSchemasVersion=0.7.5 | ||
orgJsonVersion=20211205 | ||
radarSchemasVersion=0.7.9 | ||
orgJsonVersion=20220320 | ||
opencsvVersion=5.6 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
radar-commons-server/src/main/java/org/radarbase/stream/collector/RecordCollector.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
package org.radarbase.stream.collector; | ||
|
||
import org.apache.avro.specific.SpecificRecord; | ||
import org.apache.avro.generic.IndexedRecord; | ||
|
||
public interface RecordCollector { | ||
/** | ||
* Add a sample to the collection. | ||
* @param record new sample that has to be analysed | ||
* @throws IllegalStateException if this collector was constructed without a schema. | ||
*/ | ||
RecordCollector add(SpecificRecord record); | ||
RecordCollector add(IndexedRecord record); | ||
} |
Oops, something went wrong.