From bfccc6f7a5d416f1e7afd3fe843c1fed0f11a28d Mon Sep 17 00:00:00 2001 From: Robinson Date: Fri, 30 Apr 2021 18:22:25 +0200 Subject: [PATCH] WIP removeObject --- src/dorkbox/network/connection/Connection.kt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/dorkbox/network/connection/Connection.kt b/src/dorkbox/network/connection/Connection.kt index dc942f2b..4fd41249 100644 --- a/src/dorkbox/network/connection/Connection.kt +++ b/src/dorkbox/network/connection/Connection.kt @@ -630,4 +630,11 @@ open class Connection(connectionParameters: ConnectionParams<*>) { rmiConnectionSupport.createRemoteObject(this, kryoId, null, callback) } + + /** + * Removes + */ + fun removeObject(rmiObjectId: Int) { + TODO("Not yet implemented") + } }