Search in sources :

Example 11 with Schema

use of com.hazelcast.internal.serialization.impl.compact.Schema in project hazelcast by hazelcast.

the class SendAllSchemasOperation method readInternal.

@Override
protected void readInternal(ObjectDataInput in) throws IOException {
    int size = in.readInt();
    schemas = new ArrayList<>(size);
    for (int i = 0; i < size; i++) {
        Schema schema = in.readObject();
        schemas.add(schema);
    }
}
Also used : Schema(com.hazelcast.internal.serialization.impl.compact.Schema)

Aggregations

Schema (com.hazelcast.internal.serialization.impl.compact.Schema)11 ClientMessage (com.hazelcast.client.impl.protocol.ClientMessage)2 ClientInvocation (com.hazelcast.client.impl.spi.impl.ClientInvocation)2 Member (com.hazelcast.cluster.Member)2 ClusterService (com.hazelcast.internal.cluster.ClusterService)2 OperationService (com.hazelcast.spi.impl.operationservice.OperationService)2 ArrayList (java.util.ArrayList)2 Map (java.util.Map)2 ConcurrentHashMap (java.util.concurrent.ConcurrentHashMap)2 Nonnull (javax.annotation.Nonnull)2 Address (com.hazelcast.cluster.Address)1 HazelcastJsonValue (com.hazelcast.core.HazelcastJsonValue)1 Versions (com.hazelcast.internal.cluster.Versions)1 Data (com.hazelcast.internal.serialization.Data)1 CompactGenericRecord (com.hazelcast.internal.serialization.impl.compact.CompactGenericRecord)1 DefaultCompactReader (com.hazelcast.internal.serialization.impl.compact.DefaultCompactReader)1 FieldDescriptor (com.hazelcast.internal.serialization.impl.compact.FieldDescriptor)1 SchemaService (com.hazelcast.internal.serialization.impl.compact.SchemaService)1 PortableGenericRecord (com.hazelcast.internal.serialization.impl.portable.PortableGenericRecord)1 ManagedService (com.hazelcast.internal.services.ManagedService)1