diff options
| author | mo khan <mo@mokhan.ca> | 2010-07-19 12:55:31 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2010-07-19 13:00:38 -0600 |
| commit | f5ed784fe69d5b6b321d5e08d0ab10840b2baba2 (patch) | |
| tree | 7dbf1f5619261d9d277d974aa66c373c729bc50f /product/client/common/messages/ApplicationShuttingDown.cs | |
| parent | f7756649a914fe55d3b6e7181c8c5dabdef37596 (diff) | |
figured out why the application was not getting shutdown. needed to stop the command processor and the queue.
Diffstat (limited to 'product/client/common/messages/ApplicationShuttingDown.cs')
| -rw-r--r-- | product/client/common/messages/ApplicationShuttingDown.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/product/client/common/messages/ApplicationShuttingDown.cs b/product/client/common/messages/ApplicationShuttingDown.cs new file mode 100644 index 0000000..e920e33 --- /dev/null +++ b/product/client/common/messages/ApplicationShuttingDown.cs @@ -0,0 +1,9 @@ +using System;
+using ProtoBuf;
+
+namespace presentation.windows.common.messages
+{
+ [Serializable]
+ [ProtoContract]
+ public class ApplicationShuttingDown : IEvent {}
+}
\ No newline at end of file |
