Package com.higherfrequencytrading.chronicle.impl

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

Related Classes of com.higherfrequencytrading.chronicle.impl.WrappedExcerpt

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.