Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make Utf8StringNewlineStrategy class open (#366)
Make Utf8StringNewlineStrategy class open so that clients can extend the class and apply custom transformations. For example: ```kotlin class MyRecordStrategy() : Utf8StringNewlineStrategy(ignoreBlankLines = true) { override fun calculateNextRecordBytes = super.calculateNextRecordBytes(source).map(String::uppercase) } ```
- Loading branch information