Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanSweet committed Jan 10, 2010
1 parent 22edb39 commit 0aa0934
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/com/esotericsoftware/kryo/serialize/FieldSerializer.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
import com.esotericsoftware.kryo.Kryo.RegisteredClass;

/**
* Serializes objects using direct field assignment. This is the most efficient mechanism for serializing objects, often as good
* as {@link CustomSerialization}. FieldSerializer is many times smaller and faster than Java serialization.
* Serializes objects using direct field assignment. This is an efficient mechanism for serializing objects, often as good as
* {@link CustomSerialization}. FieldSerializer is many times smaller and faster than Java serialization.
* {@link AsmFieldSerializer} is faster but requires the fields to be public.
* <p>
* FieldSerializer does not write header data, only the object data is stored. If the type of a field is not final (note
* primitives are final) then an extra byte is written for that field.
Expand Down

0 comments on commit 0aa0934

Please sign in to comment.