mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-31 06:55:59 +00:00
Stop the daemon if plugin is unloaded
This commit is contained in:
parent
4abe70062f
commit
c96424256e
1 changed files with 5 additions and 1 deletions
|
@ -9,6 +9,7 @@ import io.flutter.plugin.common.MethodChannel.MethodCallHandler
|
||||||
import io.flutter.plugin.common.MethodChannel.Result
|
import io.flutter.plugin.common.MethodChannel.Result
|
||||||
|
|
||||||
import mwebd.Mwebd
|
import mwebd.Mwebd
|
||||||
|
import mwebd.Server
|
||||||
|
|
||||||
/** CwMwebPlugin */
|
/** CwMwebPlugin */
|
||||||
class CwMwebPlugin: FlutterPlugin, MethodCallHandler {
|
class CwMwebPlugin: FlutterPlugin, MethodCallHandler {
|
||||||
|
@ -17,6 +18,7 @@ class CwMwebPlugin: FlutterPlugin, MethodCallHandler {
|
||||||
/// This local reference serves to register the plugin with the Flutter Engine and unregister it
|
/// This local reference serves to register the plugin with the Flutter Engine and unregister it
|
||||||
/// when the Flutter Engine is detached from the Activity
|
/// when the Flutter Engine is detached from the Activity
|
||||||
private lateinit var channel : MethodChannel
|
private lateinit var channel : MethodChannel
|
||||||
|
private var server: Server? = null
|
||||||
private var port: Long? = null
|
private var port: Long? = null
|
||||||
|
|
||||||
override fun onAttachedToEngine(@NonNull flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
override fun onAttachedToEngine(@NonNull flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
|
@ -27,7 +29,8 @@ class CwMwebPlugin: FlutterPlugin, MethodCallHandler {
|
||||||
override fun onMethodCall(@NonNull call: MethodCall, @NonNull result: Result) {
|
override fun onMethodCall(@NonNull call: MethodCall, @NonNull result: Result) {
|
||||||
if (call.method == "start") {
|
if (call.method == "start") {
|
||||||
val dataDir = call.argument("dataDir") ?: ""
|
val dataDir = call.argument("dataDir") ?: ""
|
||||||
port = port ?: Mwebd.newServer("", dataDir, "").start(0)
|
server = server ?: Mwebd.newServer("", dataDir, "")
|
||||||
|
port = port ?: server?.start(0)
|
||||||
result.success(port)
|
result.success(port)
|
||||||
} else {
|
} else {
|
||||||
result.notImplemented()
|
result.notImplemented()
|
||||||
|
@ -36,5 +39,6 @@ class CwMwebPlugin: FlutterPlugin, MethodCallHandler {
|
||||||
|
|
||||||
override fun onDetachedFromEngine(@NonNull binding: FlutterPlugin.FlutterPluginBinding) {
|
override fun onDetachedFromEngine(@NonNull binding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
channel.setMethodCallHandler(null)
|
channel.setMethodCallHandler(null)
|
||||||
|
server?.stop()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue