InfoQ Homepage Continuations Content on InfoQ
News
RSS Feed-
Going Beyond the Standard: Continuations in Mono
While Mono usually strives to follow the C# and Common Language Infrastructure specifications, it does occasionally go beyond them. While some features such as SIMD support are backwards-compatible with .NET, runtime supported continuations are exclusive to Mono.
-
Jetty 7.0 released
The release of Jetty 7.0 was announced today and is available for download from its new home at Eclipse.org as well as via the maven repository. This version represents an evolution of Jetty 6.0, and represents a significant reorganisation of the codebase as well as numerous performance improvements. In addition, the Continuation API is now portable across different servers.
-
Wee: Continuation Based Ruby Web Framework
Wee is a web framework similar to Seaside that uses continuations and provides reusable UI components. With Ruby 1.9, continuations stopped leaking memory and can therefore be used safely in a production environment.
-
QCon Panel: What will the Future of Java Development Be?
In this panel from QCon San Francisco, Joshua Bloch, Chet Haase, Rod Johnson, Erik Meijer and Charles Nutter discussed and debated the future of the Java language and APIs based upon the lessons we have learned from the past. Topics included static versus dynamic languages, removing code from Java, forking the JVM, and the next big programming language.
-
Ruby 1.9 adds Fibers for lightweight concurrency
Fibers were recently in the Ruby 1.9 branch. The Coroutine-like concept has many uses, such as implementing lightweight concurrency and others. We look at the concept and influences of Fibers in Ruby 1.9, as well as code samples.
-
Jetty 6: Rewritten for Continuations, NIO, Servlet 2.5
The Jetty 6 was released a couple of weeks ago and 6.0.1 a few days ago. The Jetty 6 code base is a complete rewrite adding such features as Continuations, NIO support, and 2.5 Servlet spec compliance. InfoQ caught up with Jetty lead Greg Wilkins to find out more details on the version 6 product.
-
Revisiting the Need for Asynchronous Servlets
As we transition from a page based view of web application development to an Ajax style data based new server programming needs emerge. Gregg Wilkins, lead developer on the Jetty web container, has been examining the need for an Asynchronous Servlet API in a series of blog posts. This review has resulted in Gregg concluding that continuations are the best solution at the present time.