Adding ByteBuffer version, just in case. we still need to use this.
Change-Id: I2549354bb07baec66f139624dbbd743627a59fc2
Showing
2 changed files
with
30 additions
and
0 deletions
1 | package org.onlab.onos.store.serializers; | 1 | package org.onlab.onos.store.serializers; |
2 | 2 | ||
3 | import java.net.URI; | 3 | import java.net.URI; |
4 | +import java.nio.ByteBuffer; | ||
4 | import java.util.ArrayList; | 5 | import java.util.ArrayList; |
5 | import java.util.HashMap; | 6 | import java.util.HashMap; |
6 | 7 | ||
... | @@ -100,4 +101,14 @@ public class KryoSerializationManager implements KryoSerializationService { | ... | @@ -100,4 +101,14 @@ public class KryoSerializationManager implements KryoSerializationService { |
100 | return serializerPool.deserialize(bytes); | 101 | return serializerPool.deserialize(bytes); |
101 | } | 102 | } |
102 | 103 | ||
104 | + @Override | ||
105 | + public void serialize(Object obj, ByteBuffer buffer) { | ||
106 | + serializerPool.serialize(obj, buffer); | ||
107 | + } | ||
108 | + | ||
109 | + @Override | ||
110 | + public <T> T deserialize(ByteBuffer buffer) { | ||
111 | + return serializerPool.deserialize(buffer); | ||
112 | + } | ||
113 | + | ||
103 | } | 114 | } | ... | ... |
1 | package org.onlab.onos.store.serializers; | 1 | package org.onlab.onos.store.serializers; |
2 | 2 | ||
3 | +import java.nio.ByteBuffer; | ||
4 | + | ||
3 | // TODO: To be replaced with SerializationService from IOLoop activity | 5 | // TODO: To be replaced with SerializationService from IOLoop activity |
4 | /** | 6 | /** |
5 | * Service to serialize Objects into byte array. | 7 | * Service to serialize Objects into byte array. |
... | @@ -16,6 +18,15 @@ public interface KryoSerializationService { | ... | @@ -16,6 +18,15 @@ public interface KryoSerializationService { |
16 | public byte[] serialize(final Object obj); | 18 | public byte[] serialize(final Object obj); |
17 | 19 | ||
18 | /** | 20 | /** |
21 | + * Serializes the specified object into bytes using one of the | ||
22 | + * pre-registered serializers. | ||
23 | + * | ||
24 | + * @param obj object to be serialized | ||
25 | + * @param buffer to write serialized bytes | ||
26 | + */ | ||
27 | + public void serialize(final Object obj, ByteBuffer buffer); | ||
28 | + | ||
29 | + /** | ||
19 | * Deserializes the specified bytes into an object using one of the | 30 | * Deserializes the specified bytes into an object using one of the |
20 | * pre-registered serializers. | 31 | * pre-registered serializers. |
21 | * | 32 | * |
... | @@ -24,4 +35,12 @@ public interface KryoSerializationService { | ... | @@ -24,4 +35,12 @@ public interface KryoSerializationService { |
24 | */ | 35 | */ |
25 | public <T> T deserialize(final byte[] bytes); | 36 | public <T> T deserialize(final byte[] bytes); |
26 | 37 | ||
38 | + /** | ||
39 | + * Deserializes the specified bytes into an object using one of the | ||
40 | + * pre-registered serializers. | ||
41 | + * | ||
42 | + * @param buffer bytes to be deserialized | ||
43 | + * @return deserialized object | ||
44 | + */ | ||
45 | + public <T> T deserialize(final ByteBuffer buffer); | ||
27 | } | 46 | } | ... | ... |
-
Please register or login to post a comment