|
39 | 39 | * Service where it listens on multiple TCP or UDP sockets for incoming log requests.
|
40 | 40 | *
|
41 | 41 | * <p>
|
42 |
| - * <i>INTENT</i> <br/> |
| 42 | + * <i>INTENT</i> <br> |
43 | 43 | * The Reactor design pattern handles service requests that are delivered concurrently to an
|
44 | 44 | * application by one or more clients. The application can register specific handlers for processing
|
45 | 45 | * which are called by reactor on specific events.
|
46 | 46 | *
|
47 | 47 | * <p>
|
48 |
| - * <i>PROBLEM</i> <br/> |
| 48 | + * <i>PROBLEM</i> <br> |
49 | 49 | * Server applications in a distributed system must handle multiple clients that send them service
|
50 | 50 | * requests. Following forces need to be resolved:
|
51 | 51 | * <ul>
|
|
56 | 56 | * </ul>
|
57 | 57 | *
|
58 | 58 | * <p>
|
59 |
| - * <i>PARTICIPANTS</i> <br/> |
| 59 | + * <i>PARTICIPANTS</i> <br> |
60 | 60 | * <ul>
|
61 |
| - * <li>Synchronous Event De-multiplexer</li> {@link NioReactor} plays the role of synchronous event |
62 |
| - * de-multiplexer. It waits for events on multiple channels registered to it in an event loop. |
63 |
| - * |
| 61 | + * <li>Synchronous Event De-multiplexer |
64 | 62 | * <p>
|
65 |
| - * <li>Initiation Dispatcher</li> {@link NioReactor} plays this role as the application specific |
66 |
| - * {@link ChannelHandler}s are registered to the reactor. |
67 |
| - * |
| 63 | + * {@link NioReactor} plays the role of synchronous event de-multiplexer. |
| 64 | + * It waits for events on multiple channels registered to it in an event loop. |
| 65 | + * </p> |
| 66 | + * </li> |
| 67 | + * <li>Initiation Dispatcher |
68 | 68 | * <p>
|
69 |
| - * <li>Handle</li> {@link AbstractNioChannel} acts as a handle that is registered to the reactor. |
| 69 | + * {@link NioReactor} plays this role as the application specific {@link ChannelHandler}s |
| 70 | + * are registered to the reactor. |
| 71 | + * </p> |
| 72 | + * </li> |
| 73 | + * <li>Handle |
| 74 | + * <p> |
| 75 | + * {@link AbstractNioChannel} acts as a handle that is registered to the reactor. |
70 | 76 | * When any events occur on a handle, reactor calls the appropriate handler.
|
71 |
| - * |
| 77 | + * </p> |
| 78 | + * </li> |
| 79 | + * <li>Event Handler |
72 | 80 | * <p>
|
73 |
| - * <li>Event Handler</li> {@link ChannelHandler} acts as an event handler, which is bound to a |
| 81 | + * {@link ChannelHandler} acts as an event handler, which is bound to a |
74 | 82 | * channel and is called back when any event occurs on any of its associated handles. Application
|
75 | 83 | * logic resides in event handlers.
|
| 84 | + * </p> |
| 85 | + * </li> |
76 | 86 | * </ul>
|
77 |
| - * |
78 |
| - * <p> |
79 | 87 | * The application utilizes single thread to listen for requests on all ports. It does not create a
|
80 | 88 | * separate thread for each client, which provides better scalability under load (number of clients
|
81 | 89 | * increase).
|
82 |
| - * |
83 |
| - * <p> |
84 | 90 | * The example uses Java NIO framework to implement the Reactor.
|
85 | 91 | *
|
86 | 92 | */
|
|
0 commit comments