Skip to content

Commit dbc2aca

Browse files
committed
Work on iluwatar#74, removed author name from all classes. [ci skip]. Author names were added due to default eclipse configuration.
1 parent e6a4200 commit dbc2aca

File tree

12 files changed

+0
-27
lines changed

12 files changed

+0
-27
lines changed

reactor/src/main/java/com/iluwatar/reactor/app/App.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@
6161
* <p>
6262
* The example uses Java NIO framework to implement the Reactor.
6363
*
64-
* @author npathai
65-
*
6664
*/
6765
public class App {
6866

reactor/src/main/java/com/iluwatar/reactor/app/AppClient.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
/**
1818
* Represents the clients of Reactor pattern. Multiple clients are run concurrently and send logging
1919
* requests to Reactor.
20-
*
21-
* @author npathai
2220
*/
2321
public class AppClient {
2422
private final ExecutorService service = Executors.newFixedThreadPool(4);

reactor/src/main/java/com/iluwatar/reactor/app/LoggingHandler.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
/**
1111
* Logging server application logic. It logs the incoming requests on standard console and returns a
1212
* canned acknowledgement back to the remote peer.
13-
*
14-
* @author npathai
1513
*/
1614
public class LoggingHandler implements ChannelHandler {
1715

reactor/src/main/java/com/iluwatar/reactor/framework/AbstractNioChannel.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
* concrete implementation. It provides a block writing mechanism wherein when any
2020
* {@link ChannelHandler} wants to write data back, it queues the data in pending write queue and
2121
* clears it in block manner. This provides better throughput.
22-
*
23-
* @author npathai
24-
*
2522
*/
2623
public abstract class AbstractNioChannel {
2724

reactor/src/main/java/com/iluwatar/reactor/framework/ChannelHandler.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
* <p>
1010
* A {@link ChannelHandler} can be associated with one or many {@link AbstractNioChannel}s, and
1111
* whenever an event occurs on any of the associated channels, the handler is notified of the event.
12-
*
13-
* @author npathai
1412
*/
1513
public interface ChannelHandler {
1614

reactor/src/main/java/com/iluwatar/reactor/framework/Dispatcher.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
*
1717
* @see SameThreadDispatcher
1818
* @see ThreadPoolDispatcher
19-
*
20-
* @author npathai
2119
*/
2220
public interface Dispatcher {
2321
/**

reactor/src/main/java/com/iluwatar/reactor/framework/NioDatagramChannel.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
/**
1212
* A wrapper over {@link DatagramChannel} which can read and write data on a DatagramChannel.
13-
*
14-
* @author npathai
1513
*/
1614
public class NioDatagramChannel extends AbstractNioChannel {
1715

reactor/src/main/java/com/iluwatar/reactor/framework/NioReactor.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
* NOTE: This is one of the ways to implement NIO reactor and it does not take care of all possible
2929
* edge cases which are required in a real application. This implementation is meant to demonstrate
3030
* the fundamental concepts that lie behind Reactor pattern.
31-
*
32-
* @author npathai
33-
*
3431
*/
3532
public class NioReactor {
3633

reactor/src/main/java/com/iluwatar/reactor/framework/NioServerSocketChannel.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
/**
1212
* A wrapper over {@link NioServerSocketChannel} which can read and write data on a
1313
* {@link SocketChannel}.
14-
*
15-
* @author npathai
1614
*/
1715
public class NioServerSocketChannel extends AbstractNioChannel {
1816

reactor/src/main/java/com/iluwatar/reactor/framework/SameThreadDispatcher.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
* For better performance use {@link ThreadPoolDispatcher}.
1212
*
1313
* @see ThreadPoolDispatcher
14-
*
15-
* @author npathai
1614
*/
1715
public class SameThreadDispatcher implements Dispatcher {
1816

reactor/src/main/java/com/iluwatar/reactor/framework/ThreadPoolDispatcher.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
* An implementation that uses a pool of worker threads to dispatch the events. This provides better
1010
* scalability as the application specific processing is not performed in the context of I/O
1111
* (reactor) thread.
12-
*
13-
* @author npathai
14-
*
1512
*/
1613
public class ThreadPoolDispatcher implements Dispatcher {
1714

reactor/src/test/java/com/iluwatar/reactor/app/AppTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
*
1212
* This class tests the Distributed Logging service by starting a Reactor and then sending it
1313
* concurrent logging requests using multiple clients.
14-
*
15-
* @author npathai
1614
*/
1715
public class AppTest {
1816

0 commit comments

Comments
 (0)