rrwright commented on code in PR #744:
URL: https://github.com/apache/pekko-http/pull/744#discussion_r2326549875


##########
http/src/main/scala/org/apache/pekko/http/scaladsl/settings/OversizedSseStrategy.scala:
##########
@@ -0,0 +1,39 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * license agreements; and to You under the Apache License, version 2.0:
+ *
+ *   https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * This file is part of the Apache Pekko project, which was derived from Akka.
+ */
+
+package org.apache.pekko.http.scaladsl.settings
+
+import org.apache.pekko.annotation.InternalApi
+
+sealed trait OversizedSseStrategy
+
+object OversizedSseStrategy {
+  case object FailStream extends OversizedSseStrategy
+  case object LogAndSkip extends OversizedSseStrategy
+  case object Truncate extends OversizedSseStrategy
+  case object DeadLetter extends OversizedSseStrategy
+

Review Comment:
   👍 I just pushed changes that should now include the java api.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to