long polling netty nio framework java
Asked Answered
T

3

10

How can I do long-polling using netty framework? Say for example I fetch http://localhost/waitforx

but waitforx is asynchronous because it has to wait for an event? Say for example it fetches something from a blocking queue(can only fetch when data in queue). When getting item from queue I would like to sent data back to client. Hopefully somebody can give me some tips how to do this.

Many thanks

Tarnish answered 19/2, 2010 at 4:11 Comment(0)
N
10

You could write a response header first, and then send the body (content) later from other thread.

void messageReceived(...) {
    HttpResponse res = new DefaultHttpResponse(...);
    res.setHeader(...);
    ...
    channel.write(res);
}

// In a different thread..
ChannelBuffer partialContent = ...;
channel.write(partialContent);
Nurse answered 7/6, 2010 at 1:30 Comment(2)
Does this actually work? Can you write to a channel from another thread? It's thread-safe?Socialization
How does the "different thread" know which channel to use? For example, client1 does a long poll, do I have to put the channel in a HashMap<clientId,Channel> and fetch it once the event has occurred so that I can send the partial content?Attached
H
3

You can use netty-socketio project. It's implementation of Socket.IO server with long polling support. On web side you can use Socket.IO client javascript lib.

Hartford answered 7/4, 2012 at 12:8 Comment(0)
F
0

You could also do the following in [sfnrpc]: http://code.google.com/p/sfnrpc

Object object = RPCClient.getInstance().invoke("#URN1","127.0.0.1:6878","echo",true,60,"", objArr,classArr, sl);

The true causes communication to be synchronous.

Fatma answered 2/10, 2013 at 16:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.