Skip to content
Snippets Groups Projects
Commit 5021b319 authored by Simon Spinner's avatar Simon Spinner
Browse files

Add createMessageExchanges to Scope.

parent 36d49fce
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,10 @@ public abstract class Scope {
try {
transaction.commit();
// No initialize the message exchanges in the messaging
// subsystem through which the coordination message are
// transferred.
createMessageExchanges();
return true;
} catch (CommitException e) {
e.printStackTrace();
......@@ -74,4 +78,8 @@ public abstract class Scope {
protected abstract void createResources(Transaction transaction);
protected abstract String getBasePath();
protected void createMessageExchanges() {
// Do nothing;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment