All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.server.cluster.BinaryTransactionEventReader Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.server.cluster;

import io.ebeaninternal.api.BinaryReadContext;
import io.ebeaninternal.api.SpiEbeanServer;
import io.ebeaninternal.server.transaction.RemoteTransactionEvent;

import java.io.IOException;

/**
 * Mechanism to convert RemoteTransactionEvent to/from byte[] content.
 */
public class BinaryTransactionEventReader {

  private final ServerLookup serverLookup;

  public BinaryTransactionEventReader(ServerLookup serverLookup) {
    this.serverLookup = serverLookup;
  }

  /**
   * Read Transaction from bytes.
   */
  public RemoteTransactionEvent read(byte[] byteData) throws IOException {
    return read(new BinaryReadContext(byteData));
  }

  /**
   * Read Transaction using BinaryReadContext.
   */
  public RemoteTransactionEvent read(BinaryReadContext dataInput) throws IOException {

    String serverName = dataInput.readUTF();
    SpiEbeanServer server = (SpiEbeanServer) serverLookup.getServer(serverName);
    if (server == null) {
      throw new IllegalStateException("Database not found for name " + serverName);
    }
    RemoteTransactionEvent event =  new RemoteTransactionEvent(server);
    event.readBinary(dataInput);
    return event;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy