All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.kickstart.servlet.StaticDataPublisher Maven / Gradle / Ivy

package graphql.kickstart.servlet;

import graphql.execution.reactive.SingleSubscriberPublisher;
import org.reactivestreams.Publisher;

class StaticDataPublisher extends SingleSubscriberPublisher implements Publisher {

  StaticDataPublisher(T data) {
    super();
    offer(data);
    noMoreData();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy