dev@grizzly.java.net

Re: About async read, write inteface and UDPConnectorHandler's blocking write

From: Jeanfrancois Arcand <Jeanfrancois.Arcand_at_Sun.COM>
Date: Thu, 14 May 2009 10:15:54 -0400

Salut,

Bongjae Chang wrote:
> Hi,
>
> I have several proposals and questions.
>
> (1)
> CacheableConnector doesn't implement AsyncQueueWritable and
> AsyncQueueReadable interface.
>
> I think that it is not difficult that CacheableConnector implements
> AsyncQueueWritable and AsyncQueueReadable interfaces.
>
> What do you think?

+1

>
> (2)
> XXXConnectorHandler already implements AsyncQueueWritable and
> AsyncQueueReadable interfaces except for CacheableConnector, so how
> about moving two interfaces to ConnectorHandler interface like this?
> ----
> public interface ConnectorHandler extends Handler, Closeable,
> *AsyncQueueWritable, AsyncQueueReadable* {
> ...
> }
> ----
>
> Then, does ConnectorHandler owe too many duties?

My goal when I created the ConnectorHandler interface was to let people
implement their own...after more than 2 years, I've never see someone
using that interface directly. This is one of the reason why such low
level API got dropped in 2.0. So +1 for your proposal. I don't think it
add too many duties.


>
> (3)
> UDPConnectorHandler doesn't support a blocking write like this.
> ----
> public long write(ByteBuffer byteBuffer, boolean blocking) throws
> IOException {
> ...
> if( blocking) {
> *throw new IllegalStateException("Blocking mode not supported");*
> } else {
> ...
> }
> }
> ----
>
> I am curious to know the reason.

I think we just never had a chance to fully implement and test it. If
you look in OutputWriter, we added support for blocking but we never
finished it. So I would be interested to get you proposal on that.

Thanks!!

-- Jeanfrancois



>
> Please advice me.
>
> Thanks.
>
> --
> Bongjae Chang