/* * Name: ChartReceiver.java * Package: it.kaizenteam.app.model.service * Location: Sources/Applicazione/main/java/it/kaizenteam/app/model/Service * Date: 2015-05-18 * Version: v1.00 * * History: * ================================================================= * Version Date Programmer Changes * ================================================================= * v1.00 2015-06-15 Carlon Chiara Approved * ================================================================= * v0.04 2015-06-02 Rubin Marco Verify * ================================================================= * v0.03 2015-05-30 Bigarella Chiara Edit * ================================================================= * v0.02 2015-05-24 Dal Bianco Davide Verify * ================================================================= * v0.01 2015-05-18 Moretto Alessandro Creation * ================================================================= * */ package it.kaizenteam.app.model.Service; /** * ChartReceiver is the interface ChartReceiverImpl. */ public interface ChartReceiver { /** * This method has the task of finishing the receipt of the updates through the socket channel */ void stopUpdateEvent(); /** * This method has the task of finding data and settings of a chart whose id is chartId. This method returns a HashMap in which are stored data with the keys "data" and "settings". * @param chartId id of the chart */ void getChart(String chartId); }