Skip to content

Commit

Permalink
refine user doc
Browse files Browse the repository at this point in the history
  • Loading branch information
chaokunyang committed Dec 4, 2024
1 parent c10fedd commit 287243c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ public class FuryResources {
}
```

## Use Apache Fury with Reactive Rest

## Use Apache Fury with Quarkus REST/RESTEasy
You can send a http request with Fury protocol, and let Fury to handle your objects serialization.

The usage will be different if class registration is disabled or enabled:
Expand Down
3 changes: 2 additions & 1 deletion docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ public class ExampleResource {
}
----

NOTE: The class ID (or serialization identifier) must be identical on both the client and server sides. A mismatch in the class ID will result in serialization or deserialization issues, potentially causing runtime errors or data corruption.
NOTE: If class registration is enabled, the class ID (or serialization identifier) must be identical on both the client and server sides. A mismatch in the class ID will result in serialization or deserialization issues, potentially causing runtime errors or data corruption.
If class registration is disabled, please do not assign class id at client and server slides.

[[extension-configuration-reference]]
== Extension Configuration Reference
Expand Down

0 comments on commit 287243c

Please sign in to comment.