diff options
author | 2018-06-28 14:42:05 +0200 | |
---|---|---|
committer | 2018-08-02 11:04:01 +0200 | |
commit | 03702b48989174dc8afa855e663a28e34b4da67b (patch) | |
tree | e89a4930aab1a53014b81e76be493dda41d9e007 /hv-collector-domain/pom.xml | |
parent | cf1465f37d20391a921df449d5dd01454f64910c (diff) |
Use Either instead of exceptions in frame decoder
Goals:
* Make code cleaner (in a FP way)
* Avoid costly exception throw each time we wait for the rest of the
frame (collecting stack traces is costly and we do not need them
anyway)
Closes ONAP-437
Change-Id: I40341d3c2cb85f3ff581d89167245cb009dbb070
Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
Issue-ID: DCAEGEN2-601
Diffstat (limited to 'hv-collector-domain/pom.xml')
-rw-r--r-- | hv-collector-domain/pom.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hv-collector-domain/pom.xml b/hv-collector-domain/pom.xml index c11510ac..85c2a45a 100644 --- a/hv-collector-domain/pom.xml +++ b/hv-collector-domain/pom.xml @@ -103,6 +103,10 @@ <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> </dependency> + <dependency> + <groupId>io.arrow-kt</groupId> + <artifactId>arrow-core</artifactId> + </dependency> <dependency> <groupId>org.assertj</groupId> |