Package org.exoplatform.services.jcr.impl.dataflow.persistent

Examples of org.exoplatform.services.jcr.impl.dataflow.persistent.PersistedValueData


         else
         {
            sf.acquire(this); // workaround for AsyncReplication test
            try
            {
               PersistedValueData vd = new StreamPersistedValueData(orderNumber, sf, spoolConfig);

               // skip data in input stream
               if (in.skip(length) != length)
               {
                  throw new IOException("Content isn't skipped correctly.");
View Full Code Here


         long t3 = System.currentTimeMillis();

         PersistedValueDataReader rdr = new PersistedValueDataReader(holder, SpoolConfig.getDefaultSpoolConfig());
         for (int i = 0; i < nodes; i++)
         {
            PersistedValueData obj = rdr.read(jcrin, PropertyType.BINARY);
         }
         t3 = System.currentTimeMillis() - t3;
         jcrread += t3;
         jcrin.close();
View Full Code Here

TOP

Related Classes of org.exoplatform.services.jcr.impl.dataflow.persistent.PersistedValueData

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.