(byte[] serialized)
| 57 | } |
| 58 | |
| 59 | @Override |
| 60 | public Fish parseBytes(byte[] serialized) { |
| 61 | return new Fish(new String(serialized, UTF_8)); |
| 62 | } |
| 63 | }; |
| 64 | |
| 65 | private static class FishStreamMarshaller implements Metadata.BinaryStreamMarshaller<Fish> { |
nothing calls this directly
no outgoing calls
no test coverage detected