Example usage for org.springframework.web.servlet.mvc.method.annotation SseEmitter subclass-usage

List of usage examples for org.springframework.web.servlet.mvc.method.annotation SseEmitter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.servlet.mvc.method.annotation SseEmitter subclass-usage.

Usage

From source file io.jmnarloch.spring.boot.rxjava.async.ObservableSseEmitter.java

/**
 * A specialized {@link SseEmitter} that handles {@link Observable} types. The emitter subscribes to the
 * passed {@link Observable} instance and emits every produced value through {@link #send(Object, MediaType)}.
 *
 * @author Jakub Narloch
 * @see SseEmitter