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
refactor: rename handler chain terminology to connection builder
- Rename Conductor::into_handler_chain() to into_connection_builder()
- Rename JrConnectionBuilder::with_handler_chain() to with_connection_builder()
- Rename test file jsonrpc_handler_chain.rs to jsonrpc_connection_builder.rs
- Update docs and comments throughout to use 'connection builder' and
'registered handlers' instead of 'handler chain'
Copy file name to clipboardExpand all lines: skills/sacp-v2-migration/skill.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: sacp-v2-migration
3
-
description: Migrate Rust code from sacp v1.x to v2.0 role-based API. Use when upgrading sacp dependencies, fixing JrHandlerChain errors, or when code references MessageAndCx or old connection patterns.
3
+
description: Migrate Rust code from sacp v1.x to v2.0 role-based API. Use when upgrading sacp dependencies, fixing JrConnectionBuilder errors, or when code references MessageAndCx or old connection patterns.
4
4
---
5
5
6
6
# SACP v2 Migration
@@ -9,7 +9,7 @@ description: Migrate Rust code from sacp v1.x to v2.0 role-based API. Use when u
9
9
10
10
Apply these transformations when migrating from sacp v1.x to v2.0:
11
11
12
-
### 1. Replace JrHandlerChain with role builder
12
+
### 1. Replace JrHandlerChain with role-based connection builder
0 commit comments