Package com.boundary.tuple.codegen

Examples of com.boundary.tuple.codegen.DirectTupleCodeGenerator


        unsafe.freeMemory(address);
    }

    protected void generateClass() throws Exception {
        if (this.clazz == null) {
            this.clazz = new DirectTupleCodeGenerator(iface, fieldNames, fieldTypes, layout).cookToClass();
            this.addressOffset = unsafe.objectFieldOffset(clazz.getField("address"));
            TupleAllocatorGenerator generator = new TupleAllocatorGenerator(clazz);
            this.allocator = generator.createAllocator();
        }
    }
View Full Code Here

TOP

Related Classes of com.boundary.tuple.codegen.DirectTupleCodeGenerator

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.