Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Serverside push batching #17

Open
uklance opened this issue Jun 19, 2012 · 0 comments
Open

Serverside push batching #17

uklance opened this issue Jun 19, 2012 · 0 comments

Comments

@uklance
Copy link
Owner

uklance commented Jun 19, 2012

http://cometd.org/node/70

    public class BatchingService extends BayeuxService
    {
        public void processBatch(Client remote, Message message)
        {
            remote.startBatch();

            Map<String, Object> externalData = new HashMap<String, Object>();
            // Fill the external data
            remote.deliver(getClient(), "/external", externalData, null);

            Map<String, Object> emailData = new HashMap<String, Object>();
            // Fill the email data
            remote.deliver(getClient(), "/email", emailData, null);

            remote.endBatch();
        }
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant