You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IoFuture<ClientConnection> future = client.borrowConnection(uri, worker, pool, options);
107
+
```
108
+
109
+
**Migration Rule:**
110
+
The async `IoFuture<ClientConnection>` pattern **cannot** be directly migrated because the new `borrow()` method is synchronous. These usages should be migrated to a different async pattern or kept on the old API until fully deprecated.
111
+
112
+
### Pattern 4: HTTP/1.1 vs HTTP/2
110
113
111
114
```java
112
115
// HTTP/2 (multiplexed)
@@ -238,6 +241,29 @@ try {
238
241
}
239
242
```
240
243
244
+
### Cannot find symbol ConnectionToken
245
+
**Symptom:** Compilation error stating `Cannot find symbol class ConnectionToken`.
246
+
247
+
**Cause:** Missing import for `SimpleConnectionState`.
0 commit comments