Examples of WrappedExcerpt


Examples of com.higherfrequencytrading.chronicle.impl.WrappedExcerpt

    static final int HEADER_LENGTH = 8 + 8 + 8 + 3 + 1;
    @NotNull
    private final Excerpt excerpt;

    public GatewayEntryWriter(Excerpt excerpt) {
        this.excerpt = new WrappedExcerpt(excerpt) {
            @Override
            public void finish() {
                writeInt24(HEADER_LENGTH - 4, position() - HEADER_LENGTH);
                super.finish();
            }
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.