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

com.quotemedia.streamer.client.ExchangeSubscription Maven / Gradle / Ivy

Go to download

Java streaming client that provides easy-to-use client APIs to connect and subscribe to QuoteMedia's market data streaming services. https://quotemedia.com/

The newest version!
package com.quotemedia.streamer.client;


/**
 * Subscription request for subscribing to an Exchange.
 */
public class ExchangeSubscription {

    public ExchangeSubscription() {
    }

    private String exchange;
    private Integer conflation;

    /**
     * Gets the conflation value for the exchange.
     * @return conflation for exchange
     */
    public Integer getConflation() {
        return conflation;
    }

    /**
     * Sets the conflation value for the exchange
     * @param conflation value desired for the exchange
     */
    public void setConflation(Integer conflation) {
        this.conflation = conflation;
    }

    /**
     * Returns the exchange
     * @return the exchange
     */
    public String getExchange() {
        return exchange;
    }

    /**
     * Sets the exchange to subscribe to
     * @param exchange desired for subscription
     */
    public void setExchange(String exchange) {
        this.exchange = exchange;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy