Four JSRs went into community review in quick succession.
JSR 133: Memory Model and Thread Specification Revision
Go to JSR detail page
This JSR is expected to revise substantially Chapter 17 of "The Java Language Specification" and Chapter 8 of "The Java Virtual Machine Specification". It is not expected to result in changes to existing APIs, but might clarify the semantics of some existing methods in java.lang.Thread and java.lang.Object (java.lang.Object defines the wait and join methods).
JSR 166: Concurrency Utilities
Go to JSR detail page
This JSR has aims analogous to those of the JDK1.2 Collections package:
1. To standardize a simple, extensible framework that organizes commonly used utilities into a small enough package to be readily learnable by users and maintainable by developers.
2. To provide some high-quality implementations.
This is all based on Doug Lea's great util.concurrent work
JSR 204: Unicode Supplementary Character Support
Go to JSR detail page
Version 3.1 of the Unicode standard is the first one to define characters that cannot be described by single 16-bit code points and thus the standard breaks a fundamental assumption of the Java programming language and APIs. This JSR defines the necessary adjustments to the Java APIs to enable support for such characters and enables the Java platform to continue to track the Unicode standard.
JSR 206: API for XML Processing (JAXP) 1.3
Go to JSR detail page
The following core XML standards have been revised since JAXP 1.2 and support for them will be updated in JAXP 1.3:
- Extensible Markup Language (XML) 1.1
- Namespaces in XML 1.1
- Simple API for XML (SAX) 2.0.1
- Document Object Model (DOM) Level 3:
+ Document Object Model (DOM) Level 3 Core Specification
+ Document Object Model (DOM) Level 3 Validation Specification
+ Document Object Model (DOM) Level 3 XPath Specification
+ Document Object Model (DOM) Level 3 Load and Save Specification
+ Document Object Model (DOM) Level 3 Events Specification
View all JSRs currently in Community Review
-
JSR Report: Several JSRs go into review (4 messages)
- Posted by: Dion Almaer
- Posted on: August 18 2003 08:38 EDT
Threaded Messages (4)
- JSR Report: Several JSRs go into review by Gal Binyamini on August 18 2003 12:09 EDT
- JSR Report: Several JSRs go into review by Hans Helmut on August 18 2003 12:14 EDT
- JSR Report: Several JSRs go into review by Chris West on August 18 2003 02:02 EDT
- JSR Report: Several JSRs go into review by Hans Helmut on August 18 2003 12:14 EDT
- JSR Report: Several JSRs go into review by Brian Miller on August 18 2003 16:16 EDT
-
JSR Report: Several JSRs go into review[ Go to top ]
- Posted by: Gal Binyamini
- Posted on: August 18 2003 12:09 EDT
- in response to Dion Almaer
Thanks for the report.
A small correction. java.lang.Object does not define the join() method (java.lang.Thread does). You must have meant notify?
Gal -
JSR Report: Several JSRs go into review[ Go to top ]
- Posted by: Hans Helmut
- Posted on: August 18 2003 12:14 EDT
- in response to Gal Binyamini
Anybody know when the concurrent things will get in JDK?
Hans -
JSR Report: Several JSRs go into review[ Go to top ]
- Posted by: Chris West
- Posted on: August 18 2003 14:02 EDT
- in response to Hans Helmut
Anybody know when the concurrent things will get in JDK?
>
> Hans
1.5
http://developer.java.sun.com/developer/community/chat/JavaLive/2003/jl0729.html -
JSR Report: Several JSRs go into review[ Go to top ]
- Posted by: Brian Miller
- Posted on: August 18 2003 16:16 EDT
- in response to Dion Almaer
I'm still in the process of joining JCP, so I can't preview JSR 133 yet. I wonder if starvation and priority inversion have been overlooked again. Does anyone know?