Package com.foundationdb.blob

Examples of com.foundationdb.blob.BlobAsync.truncate()


                newValue = buffer.array();
            } else {
                newValue = Arrays.copyOfRange(buffer.array(), buffer.position(), buffer.limit());
            }
            BlobAsync blob = new BlobAsync(blobDir);
            blob.truncate(txn.getTransaction(), 0).get();
            blob.write(txn.getTransaction(), 0, newValue).get();
        } else {
            dir.removeIfExists(txn.getTransaction(), PathUtil.from(schema)).get();
        }
        return buffer;
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.