summaryrefslogtreecommitdiff
path: root/code/client/StartServiceBus.cs
diff options
context:
space:
mode:
Diffstat (limited to 'code/client/StartServiceBus.cs')
-rw-r--r--code/client/StartServiceBus.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/code/client/StartServiceBus.cs b/code/client/StartServiceBus.cs
index 380a555..e7787c9 100644
--- a/code/client/StartServiceBus.cs
+++ b/code/client/StartServiceBus.cs
@@ -14,7 +14,11 @@ namespace client
handler.handler(x);
});
Resolve.the<CommandProcessor>().add(receiver);
- Resolve.the<ServiceBus>().publish<StartedApplication>(x => x.message = "client");
+ Resolve.the<ServiceBus>().publish<Message>(x =>
+ {
+ x.source = "client";
+ x.message = "ping";
+ });
}
}
} \ No newline at end of file