Package org.objectweb.howl.log

Examples of org.objectweb.howl.log.LogRecord


   */
  public byte[] read(RecordLocation location)
      throws InvalidRecordLocationException, IOException {
     
      try {
            LogRecord record = logger.get(null, toLong(location));
            return record.data;           
    } catch (InvalidLogKeyException e) {
      throw new InvalidRecordLocationException(e.getMessage(), e);
    } catch (Exception e) {
      throw (IOException) new IOException("Journal write failed: " + e)
View Full Code Here

TOP

Related Classes of org.objectweb.howl.log.LogRecord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.