File tree Expand file tree Collapse file tree
src/main/java/io/github/easy4j/codex/appserver Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ class CodexAppServerTurn implements WebSocket.Listener {
6868 private final AppServerTurnRequest request ;
6969 private final CodexAppServerConfig config ;
7070 private final ObjectMapper objectMapper ;
71- private final ThreadMappingCache threadBySession ;
71+ private final ThreadMappingStore threadBySession ;
7272 private final HttpClient httpClient ;
7373 private final CompletableFuture <AppServerTurnResult > future = new CompletableFuture <>();
7474 private final Map <Long , CompletableFuture <JsonNode >> pendingRpcs = new ConcurrentHashMap <>();
@@ -87,7 +87,7 @@ class CodexAppServerTurn implements WebSocket.Listener {
8787 CodexAppServerTurn (AppServerTurnRequest request ,
8888 CodexAppServerConfig config ,
8989 ObjectMapper objectMapper ,
90- ThreadMappingCache threadBySession ,
90+ ThreadMappingStore threadBySession ,
9191 HttpClient httpClient ) {
9292 this .request = Objects .requireNonNull (request , "request" );
9393 this .config = Objects .requireNonNull (config , "config" );
You can’t perform that action at this time.
0 commit comments