Package com.activequant.archive

Examples of com.activequant.archive.IArchiveWriter


  public static void main(String[] args) throws Exception{
       
      HBaseArchiveFactory fac = new HBaseArchiveFactory(args[0]);
        IArchiveReader iar = fac.getReader(TimeFrame.EOD);
        IArchiveWriter iwr = fac.getWriter(TimeFrame.EOD);
       
        TimeStamp now = new TimeStamp(new Date());
        double value = Math.random();
        iwr.write("TEST",now,"PX_SETTLE", value);
        iwr.commit();
       
        TSContainer container = iar.getTimeSeries("TEST", "PX_SETTLE", now);
        if(container!=null && container.timeStamps.length==1 && container.values[0] == value)
          System.out.println("All ok.");       
        else{
View Full Code Here


    }

    public synchronized IArchiveWriter getWriter(TimeFrame tf) {
        if (writers.get(tf) == null)
            try {
                IArchiveWriter writer = new HBaseArchiveWriter(zookeeperHost, zookeeperPort, tf);
                writers.put(tf, writer);
            } catch (IOException e) {
                e.printStackTrace();
            }
        return writers.get(tf);
View Full Code Here

TOP

Related Classes of com.activequant.archive.IArchiveWriter

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.