using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Windows.Forms; using SampleDomain; using TrafficCalming; namespace CalmedClient { public partial class MainForm : Form { private readonly OrderRepository _ordersRepository = new OrderRepository(); private readonly EventCalmer _calmer = new EventCalmer(TimeSpan.FromSeconds(5)); private DateTime _lastTimeUpdatedAt = DateTime.MinValue; public MainForm() { InitializeComponent(); _ordersRepository.OrderArrived += _calmer.HandleEvent; _calmer.EventOccurred += HandleOrderArrived; } private void HandleOrderArrived(object sender, EventArgs e) { if (Handle == IntPtr.Zero) return; this.Invoke(new Action(UpdateOrdersGrid)); } private void UpdateOrdersGrid() { var orders = _ordersRepository.ListFrom(_lastTimeUpdatedAt).ToList(); _ordersGrid.DataSource = orders ; _lastTimeUpdatedAt = DateTime.Now; } private void MainFormLoad(object sender, System.EventArgs e) { _ordersRepository.StartGenerating(); } private void Button1Click(object sender, System.EventArgs e) { MessageBox.Show(this, "Button clicked", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Math Primers for Programmers