Search

Blogs

David M. Lloyd

Moving!
Sep 10, 2010 11:48 AM by David M. Lloyd
As of today, my blog is officially moving to a new home at in.relation.to.
Safely downgrading a write lock with ReadWriteLock
Feb 23, 2010 3:45 PM by David M. Lloyd
A simple pattern to downgrade a write lock to a read lock safely: ReadWriteLock rwl = getLock(); Lock lock = rwl.writeLock(); lock.lock(); try { ... Perform write operation ... // downgrade lock safely final Lock readLock =…
XNIO 2.0.2 Bugfix Release
Jan 25, 2010 3:21 PM by David M. Lloyd
A new release of XNIO is available which fixes several bugs. For more information about XNIO 2.0, see this previous post. Users of XNIO 2.0.0 and 2.0.1 are encouraged to update to 2.0.2 to take advantage of these bug fixes:[XNIO-82] - Remove jboss-…
View more david m. lloyd

Ron Sigal

JBossRemoting release 2.5.0.GA is available
Sep 15, 2008 3:58 PM by Ron Sigal
JBossRemoting 2.5.0.GA is now available. It started life as 2.4.0.SP2 (that is, it is primarily a bug fix release), but it evolved into 2.5.0.GA when it turned out that the internal divergence between Apache Tomcat and JBossWeb made it difficult to c…
JBossRemoting release 2.4.0.GA is available
Jun 3, 2008 4:07 AM by Ron Sigal
JBossRemoting 2.4.0.GA is now available. This is a major incremental release that resolves about 160 JIRA issues, including 76 bug fix issues and 28 feature issues. It is meant to be binary compatible with the previous major release, currently at 2…
View more ron sigal

JBoss Remoting

Remoting 3.0.0.Beta2 Released
Dec 18, 2008 10:23 PM by David M. Lloyd
This is the last Beta before the CR (candidate for release) series. As always, the download is available at the Remoting download page . This release differs from Beta1 in several ways, not the least of which is the more complete…
Remoting 3.0.0.Beta1 Released
Nov 14, 2008 6:07 PM by David M. Lloyd
The download is available at the Remoting download page . The structure is similar to the milestone releases; though it may be changing slightly for the next Beta. I expect that there will be at most one more Beta, followed by a …
JBoss Marshalling, River Protocol 1.0.0.GA Released
Nov 14, 2008 3:20 PM by David M. Lloyd
JBoss Marshalling is an alternative serialization API that fixes many of the problems found in the JDK serialization API while remaining fully compatible with java.io.Serializable and its relatives, and adds several new tunable par…
JBoss Marshalling Framework 1.0.0.Beta2 Released
Oct 16, 2008 11:43 PM by David M. Lloyd
I'm pleased to announce that the second beta of the new marshalling framework has arrived. The API is pretty much final at this point; now it's just a bug quest before the first CR is released in a couple weeks. For mor…
JBoss Marshalling Framework 1.0.0.Beta1 Released
Oct 6, 2008 8:46 PM by David M. Lloyd
As a part of the JBoss Remoting project (and hopefully several other projects as well), I've developed a separated marshalling (a.k.a. serialization) framework. This framework was inspired by the need for certain features una…
JBossRemoting release 2.5.0.GA is available
Sep 15, 2008 3:58 PM by Ron Sigal
JBossRemoting 2.5.0.GA is now available. It started life as 2.4.0.SP2 (that is, it is primarily a bug fix release), but it evolved into 2.5.0.GA when it turned out that the internal divergence between Apache Tomcat and JBossWeb mad…
JBossRemoting release 2.4.0.GA is available
Jun 3, 2008 4:07 AM by Ron Sigal
JBossRemoting 2.4.0.GA is now available. This is a major incremental release that resolves about 160 JIRA issues, including 76 bug fix issues and 28 feature issues. It is meant to be binary compatible with the previous major rele…
Remoting 3.0.0-M2 Released
Apr 21, 2008 11:04 AM by David M. Lloyd
Remoting 3.0.0-M2 is released. I've got the jars uploaded in a ZIP file, but you'll want to check out the project and look in the "samples/" for samples of using the standalone API. The Microcontainer integration is scheduled for M…
View more jboss remoting