Skip to content

Commit

Permalink
Merge pull request #4897 from andymc12/sseBroadcasterFix_18003
Browse files Browse the repository at this point in the history
SseBroadcaster Fix for 18.0.0.3
  • Loading branch information
tevans78 authored Aug 30, 2018
2 parents 6ac82d1 + e8334cc commit 9432b35
Showing 1 changed file with 80 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.cxf.jaxrs.sse;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.CopyOnWriteArraySet;
import java.util.function.BiConsumer;
import java.util.function.Consumer;

import javax.ws.rs.sse.OutboundSseEvent;
import javax.ws.rs.sse.SseBroadcaster;
import javax.ws.rs.sse.SseEventSink;

public class SseBroadcasterImpl implements SseBroadcaster {
private final Set<SseEventSink> subscribers = new CopyOnWriteArraySet<>();

private final Set<Consumer<SseEventSink>> closers =
new CopyOnWriteArraySet<>();

private final Set<BiConsumer<SseEventSink, Throwable>> exceptioners =
new CopyOnWriteArraySet<>();

@Override
public void register(SseEventSink sink) {
subscribers.add(sink);
}

@Override
public CompletionStage<?> broadcast(OutboundSseEvent event) {
final Collection<CompletableFuture<?>> futures = new ArrayList<>();

for (SseEventSink sink: subscribers) {
try {
futures.add(sink.send(event).toCompletableFuture());
} catch (final Exception ex) {
exceptioners.forEach(exceptioner -> exceptioner.accept(sink, ex));
}
}

return CompletableFuture.allOf(futures.toArray(new CompletableFuture[futures.size()]));
}

@Override
public void onClose(Consumer<SseEventSink> subscriber) {
closers.add(subscriber);
}

@Override
public void onError(BiConsumer<SseEventSink, Throwable> exceptioner) {
exceptioners.add(exceptioner);
}

@Override
public void close() {
subscribers.forEach(subscriber -> {
subscriber.close();
closers.forEach(closer -> closer.accept(subscriber));
});
}
}

0 comments on commit 9432b35

Please sign in to comment.