Example usage for org.springframework.amqp.rabbit.stocks.domain Quote Quote

List of usage examples for org.springframework.amqp.rabbit.stocks.domain Quote Quote

Introduction

In this page you can find the example usage for org.springframework.amqp.rabbit.stocks.domain Quote Quote.

Prototype

public Quote(Stock stock, String price) 

Source Link

Usage

From source file:org.springframework.amqp.rabbit.stocks.gateway.RabbitMarketDataGateway.java

private Quote generateFakeQuote() {
    MockStock stock = this.stocks.get(random.nextInt(this.stocks.size()));
    String price = stock.randomPrice();
    return new Quote(stock, price);
}