#161 - Publish Subscribe Channel realisation.Heavily based on iluwatars Message Channel implementation (#143).

This commit is contained in:
JaXt0r
2015-10-25 07:11:34 +01:00
parent 0a9879a277
commit ac5c1967df
8 changed files with 333 additions and 0 deletions
@@ -0,0 +1,17 @@
package com.iluwatar.publish.subscribe;
import org.junit.Test;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() throws Exception {
String[] args = {};
App.main(args);
}
}