cquezel opened a new issue, #1953:
URL: https://github.com/apache/fury/issues/1953
### Question
what does :
`java.lang.RuntimeException: Deserialize failed, type of read objects are: [
...
`
mean? How do I diagnose this situation?
The code I use is:
```
private static Fury fury;
private static Fury getFury() {
if (fury == null) {
fury =
Fury.builder().withLanguage(Language.JAVA).requireClassRegistration(false).withRefTracking(true).build();
}
return fury;
}
private static <T> T lireFury(FileInputStream fis, Class<T> klass) {
return getFury().deserializeJavaObject(new
FuryInputStream(fis), klass);
}
private static void écrireFury(FileOutputStream fos, Object objet) {
getFury().serializeJavaObject(fos, objet);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@fury.apache.org.apache.org
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org
---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@fury.apache.org
For additional commands, e-mail: commits-h...@fury.apache.org