Examples of lastWrittenScn()


Examples of com.linkedin.databus.core.DbusEventBuffer.lastWrittenScn()

        throw new BufferNotFoundException("Buffer not available for partition :" + pPart);
    }
   
    BufferInfoResponse response = new BufferInfoResponse();
    response.setMinScn(evb.getMinScn());
    response.setMaxScn(evb.lastWrittenScn());
    response.setTimestampFirstEvent(evb.getTimestampOfFirstEvent());
    response.setTimestampLatestEvent(evb.getTimestampOfLatestDataEvent());
   
      writeJsonObjectToResponse(response, request);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.