We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f83014 commit d22c888Copy full SHA for d22c888
ballerina/hub_client.bal
@@ -19,13 +19,13 @@ import ballerina/mime;
19
import ballerina/crypto;
20
21
# HTTP Based client for WebSub content publishing to subscribers
22
-public client class HubClient {
23
- private string callback;
24
- private string hub;
25
- private string topic;
26
- private string hubLinks;
27
- private string? secret;
28
- private http:Client httpClient;
+public isolated client class HubClient {
+ private final string callback;
+ private final string hub;
+ private final string topic;
+ private final string hubLinks;
+ private final string? secret;
+ private final http:Client httpClient;
29
30
# Initializes the `websubhub:HubClient`.
31
# ```ballerina
0 commit comments