tauri-plugin-sse 0.1.1

A simple Tauri plugin for Server-Sent Events (SSE), enabling real-time, one-way updates from server to your Tauri frontend.
Documentation
1
2
3
4
5
6
7
8
9
10
package com.plugin.sse

import android.util.Log

class Example {
    fun pong(value: String): String {
        Log.i("Pong", value)
        return value
    }
}