Skip to content

Instantly share code, notes, and snippets.

@ikhoon
Last active March 3, 2021 11:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikhoon/2749e03ce0c7d7d72ac02880c37e305c to your computer and use it in GitHub Desktop.
Save ikhoon/2749e03ce0c7d7d72ac02880c37e305c to your computer and use it in GitHub Desktop.

Armeria on Scala

val ints = Array(1, 2, 3)
val streamOfArrayInt: StreamMessage[Array[Int]] = StreamMessage.of(ints)
val streamOfInt: StreamMessage[Int] = StreamMessage.of(ints: _*) // 명시적으로 varargs로 쓴다로 말해줘야함
  • JUnit5의 @RegisterExtension 이 제대로 동작하지 않음 ㅡㅡ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment