The document discusses new features in Java 7 including fork/join concurrency and invokedynamic. Fork/join concurrency allows tasks to be recursively split into subtasks to take advantage of multiple cores. Invokedynamic is a new bytecode that allows method calls to be resolved at runtime rather than compile-time, improving performance of dynamic languages on the JVM. It works by triggering a bootstrap method to lookup and return a method handle for the actual implementation.