File tree 9 files changed +27
-27
lines changed
publish-subscribe/src/main/java/com/iluwatar/publish/subscribe
9 files changed +27
-27
lines changed Original file line number Diff line number Diff line change 1
1
package com .iluwatar .publish .subscribe .model ;
2
2
3
3
/**
4
- * This enum defines the content for {@link Topic} CUSTOMER_SUPPORT
4
+ * This enum defines the content for {@link Topic} CUSTOMER_SUPPORT.
5
5
*/
6
6
public enum CustomerSupportContent {
7
7
Original file line number Diff line number Diff line change 1
1
package com .iluwatar .publish .subscribe .model ;
2
2
3
3
/**
4
- * This class represents a Message that holds the published content
4
+ * This class represents a Message that holds the published content.
5
5
*/
6
6
public record Message (Object content ) {
7
7
}
Original file line number Diff line number Diff line change 5
5
import java .util .concurrent .CopyOnWriteArraySet ;
6
6
7
7
/**
8
- * This class represents a Topic that topic name and subscribers
8
+ * This class represents a Topic that topic name and subscribers.
9
9
*/
10
10
public class Topic {
11
11
@@ -22,7 +22,7 @@ public Topic(TopicName name) {
22
22
}
23
23
24
24
/**
25
- * Get the name of the topic
25
+ * Get the name of the topic.
26
26
*
27
27
* @return topic name
28
28
*/
@@ -31,7 +31,7 @@ public TopicName getName() {
31
31
}
32
32
33
33
/**
34
- * Add a subscriber to the list of subscribers
34
+ * Add a subscriber to the list of subscribers.
35
35
*
36
36
* @param subscriber subscriber to add
37
37
*/
@@ -40,7 +40,7 @@ public void addSubscriber(Subscriber subscriber) {
40
40
}
41
41
42
42
/**
43
- * Remove a subscriber to the list of subscribers
43
+ * Remove a subscriber to the list of subscribers.
44
44
*
45
45
* @param subscriber subscriber to remove
46
46
*/
@@ -49,7 +49,7 @@ public void removeSubscriber(Subscriber subscriber) {
49
49
}
50
50
51
51
/**
52
- * Publish a message to subscribers
52
+ * Publish a message to subscribers.
53
53
*
54
54
* @param message message with content to publish
55
55
*/
Original file line number Diff line number Diff line change 1
1
package com .iluwatar .publish .subscribe .model ;
2
2
3
3
/**
4
- * This enum defines the available topic names to be used in {@link Topic}
4
+ * This enum defines the available topic names to be used in {@link Topic}.
5
5
*/
6
6
public enum TopicName {
7
7
WEATHER ,
Original file line number Diff line number Diff line change 1
1
package com .iluwatar .publish .subscribe .model ;
2
2
3
3
/**
4
- * This enum defines the content for {@link Topic} WEATHER
4
+ * This enum defines the content for {@link Topic} WEATHER.
5
5
*/
6
6
public enum WeatherContent {
7
7
earthquake ("earthquake tsunami warning" ),
Original file line number Diff line number Diff line change 4
4
import com .iluwatar .publish .subscribe .model .Topic ;
5
5
6
6
/**
7
- * This class represents a Publisher
7
+ * This class represents a Publisher.
8
8
*/
9
9
public interface Publisher {
10
10
11
- /**
12
- * Register a topic in the publisher
13
- *
14
- * @param topic the topic to be registered
15
- */
16
- void registerTopic (Topic topic );
11
+ /**
12
+ * Register a topic in the publisher.
13
+ *
14
+ * @param topic the topic to be registered
15
+ */
16
+ void registerTopic (Topic topic );
17
17
18
- /**
19
- * Register a topic in the publisher
20
- *
21
- * @param topic the topic to publish the message under
22
- * @param message message with content to be published
23
- */
24
- void publish (Topic topic , Message message );
18
+ /**
19
+ * Register a topic in the publisher.
20
+ *
21
+ * @param topic the topic to publish the message under
22
+ * @param message message with content to be published
23
+ */
24
+ void publish (Topic topic , Message message );
25
25
}
Original file line number Diff line number Diff line change 8
8
import org .slf4j .LoggerFactory ;
9
9
10
10
/**
11
- * This class is an implementation of the Publisher
11
+ * This class is an implementation of the Publisher.
12
12
*/
13
13
public class PublisherImpl implements Publisher {
14
14
Original file line number Diff line number Diff line change 3
3
import com .iluwatar .publish .subscribe .model .Message ;
4
4
5
5
/**
6
- * This class represents a Subscriber
6
+ * This class represents a Subscriber.
7
7
*/
8
8
public interface Subscriber {
9
9
10
10
/**
11
- * On message method will trigger when the subscribed event is published
11
+ * On message method will trigger when the subscribed event is published.
12
12
*
13
13
* @param message the message contains the content of the published event
14
14
*/
Original file line number Diff line number Diff line change 8
8
import org .slf4j .LoggerFactory ;
9
9
10
10
/**
11
- * This class subscribes to WEATHER topic
11
+ * This class subscribes to WEATHER topic.
12
12
*/
13
13
@ Slf4j
14
14
public class WeatherSubscriber implements Subscriber {
You can’t perform that action at this time.
0 commit comments