From 8a9a1b0c1469185a232d305509bf66dbee7f2eae Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Sun, 16 Jan 2022 06:32:10 +0100 Subject: [PATCH] feat(protocol_client)!: remove unsubscribeResource method --- lib/src/core/protocol_interfaces/protocol_client.dart | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/src/core/protocol_interfaces/protocol_client.dart b/lib/src/core/protocol_interfaces/protocol_client.dart index 62314b65..6dfb1204 100644 --- a/lib/src/core/protocol_interfaces/protocol_client.dart +++ b/lib/src/core/protocol_interfaces/protocol_client.dart @@ -41,11 +41,6 @@ abstract class ProtocolClient { void Function(Exception error)? error, void Function()? complete); - /// Requests the client to perform a `unsubscribeproperty` operation on a - /// [form]. - // TODO(JKRhb): Unclear if this should rather be an unlinkResource method. - Future unsubscribeResource(Form form); - /// Defines the security definitions used by the client. // TODO(falko17): Document return parameter bool setSecurity(List metaData, Credentials? credentials);