Package org.primefaces.push.impl

Source Code of org.primefaces.push.impl.EventBusImpl$WrappedFuture

/*
* Copyright 2009-2014 PrimeTek.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.primefaces.push.impl;

import org.atmosphere.cpr.Broadcaster;
import org.atmosphere.cpr.BroadcasterListenerAdapter;
import org.atmosphere.cpr.MetaBroadcaster;
import org.primefaces.push.EventBus;

import java.util.List;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;

public class EventBusImpl implements EventBus {

    public EventBusImpl() {
    }

    //@Override
    public EventBus publish(Object o) {
        MetaBroadcaster.getDefault().broadcastTo("/*", o);
        return this;
    }

    //@Override
    public EventBus publish(String path, Object o) {
        if (!path.startsWith("/")) path = "/" + path;

        MetaBroadcaster.getDefault().broadcastTo(path, o);
        return this;
    }

    //@Override
    public EventBus publish(String path, Object o, final Reply r) {
        MetaBroadcaster.getDefault().addBroadcasterListener(new BroadcasterListenerAdapter() {
            public void onComplete(Broadcaster b) {
                try {
                    r.completed(b.getID());
                } finally {
                    MetaBroadcaster.getDefault().removeBroadcasterListener(this);
                }
            }
        });
        return null;
    }

    public <T> Future<T> schedule(final String path, final T t, int time, TimeUnit unit) {
        final Future<List<Broadcaster>> f = MetaBroadcaster.getDefault().scheduleTo(path, t, time, unit);
        return new WrappedFuture<T>(f, t);
    }

    private final static class WrappedFuture<T> implements Future<T> {

        private final Future<?> f;
        private final T t;

        private WrappedFuture(Future<?> f, T t) {
            this.f = f;
            this.t = t;
        }

        public boolean cancel(boolean b) {
            return f.cancel(b);
        }

        public boolean isCancelled() {
            return f.isCancelled();
        }

        public boolean isDone() {
            return f.isDone();
        }

        public T get() throws InterruptedException, ExecutionException {
            f.get();
            return t;
        }

        public T get(long l, TimeUnit timeUnit) throws InterruptedException, ExecutionException, TimeoutException {
            f.get(l, timeUnit);
            return t;
        }
    }

}
TOP

Related Classes of org.primefaces.push.impl.EventBusImpl$WrappedFuture

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.