MCPcopy Create free account
hub / github.com/apache/fory / serialize

Method serialize

java/fory-core/src/main/java/org/apache/fory/Fory.java:315–323  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

313 }
314
315 @Override
316 public byte[] serialize(Object obj) {
317 MemoryBuffer buf = getBuffer();
318 buf.writerIndex(0);
319 serialize(buf, obj, null);
320 byte[] bytes = buf.getBytes(0, buf.writerIndex());
321 resetBuffer();
322 return bytes;
323 }
324
325 @Override
326 public byte[] serialize(Object obj, BufferCallback callback) {

Callers 15

testOrgPackageMethod · 0.95
testForyMethod · 0.95
testForyMethod · 0.95
testForyMethod · 0.95
testSerializeJsonMethod · 0.95
testObjectTypeMethod · 0.95
testCompressionRatiosMethod · 0.95
testLargeArraysMethod · 0.95

Calls 15

getBufferMethod · 0.95
writerIndexMethod · 0.95
getBytesMethod · 0.95
resetBufferMethod · 0.95
serializeToStreamMethod · 0.95
lockMethod · 0.65
writeRefMethod · 0.65
resetMethod · 0.65
prepareMethod · 0.45

Tested by 15

testOrgPackageMethod · 0.76
testForyMethod · 0.76
testForyMethod · 0.76
testForyMethod · 0.76
testSerializeJsonMethod · 0.76
testObjectTypeMethod · 0.76
testCompressionRatiosMethod · 0.76
testLargeArraysMethod · 0.76