-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add per-connection event filter abstraction
- Loading branch information
Showing
7 changed files
with
68 additions
and
29 deletions.
There are no files selected for viewing
This file contains 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
18 changes: 18 additions & 0 deletions
18
ktor-ws-events-server/src/jvmMain/kotlin/dev/d1s/ktor/events/server/OutgoingEventFilter.kt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package dev.d1s.ktor.events.server | ||
|
||
import dev.d1s.ktor.events.server.dto.WebSocketEventDto | ||
import dev.d1s.ktor.events.server.entity.EventSendingConnection | ||
import dev.d1s.ktor.events.server.entity.ServerWebSocketEvent | ||
|
||
/** | ||
* Final filter for outgoing events. | ||
* [WebSocketEventDto] is sent to client only when this [predicate] returns true. Otherwise, the event is ignored for current connection. | ||
*/ | ||
public fun interface OutgoingEventFilter { | ||
|
||
public fun predicate( | ||
event: ServerWebSocketEvent, | ||
dto: WebSocketEventDto, | ||
connection: EventSendingConnection | ||
): Boolean | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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