com.bagri.server.hazelcast.task.EntityProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagri-server-hazelcast Show documentation
Show all versions of bagri-server-hazelcast Show documentation
Bagri DB Cache: Hazelcast implementation
The newest version!
package com.bagri.server.hazelcast.task;
import static com.bagri.server.hazelcast.serialize.TaskSerializationFactory.cli_factory_id;
import java.io.IOException;
import com.bagri.core.system.Entity;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
//import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
public abstract class EntityProcessor { //implements IdentifiedDataSerializable {
protected enum AuditType {
create,
update,
delete
}
public enum Action {
add,
remove
}
private int version;
private String admin;
public EntityProcessor() {
// serialization
}
public EntityProcessor(int version, String admin) {
this.version = version;
this.admin = admin;
}
public int getVersion() {
return version;
}
public String getAdmin() {
return admin;
}
protected void auditEntity(AuditType type, Entity entity) {
// write version/admin to somewhere
}
//@Override
public int getFactoryId() {
return cli_factory_id;
}
//@Override
public void readData(ObjectDataInput in) throws IOException {
version = in.readInt();
admin = in.readUTF();
}
//@Override
public void writeData(ObjectDataOutput out) throws IOException {
out.writeInt(version);
out.writeUTF(admin);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy