I want to send FloatBuffer accros machines (using RMI mechanism), but with Java Nio.FloatBuffer i got notserializable exception.
How can i send these buffers using Remote method invocation.
thanks
|
I want to send FloatBuffer accros machines (using RMI mechanism), but with Java Nio.FloatBuffer i got notserializable exception. How can i send these buffers using Remote method invocation. thanks |
|||||||
|
|
Buffers are not Serializable. You can extract the floats in the buffer (using FloatBuffer.get(float[]) and send them as a float array via RMI and rebuild the buffer out of the array at the other side (FloatBuffer.wrap(float[]). |
||||