This file contains hidden or 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
package com.tutorial1; | |
import org.apache.kafka.clients.consumer.*; | |
import org.apache.kafka.common.errors.WakeupException; | |
import org.apache.kafka.common.serialization.StringDeserializer; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import java.time.Duration; | |
import java.util.Collections; |
This file contains hidden or 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
module ReviewConfig exposing (config) | |
{-| Do not rename the ReviewConfig module or the config function, because | |
`elm-review` will look for these. | |
To add packages that contain rules, add them to this review project using | |
`elm install author/packagename` | |
when inside the directory containing this file. |
This file contains hidden or 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
package com.myconverter | |
import reactivemongo.api.bson.BSONDocument | |
import reactivemongo.api.bson.BSONDocumentReader | |
import reactivemongo.api.bson.BSONDocumentWriter | |
import scala.util.Try | |
case class Address( | |
line1: String, |