View Javadoc
1   /**
2    * Logback: the reliable, generic, fast and flexible logging framework.
3    * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
4    *
5    * This program and the accompanying materials are dual-licensed under
6    * either the terms of the Eclipse Public License v1.0 as published by
7    * the Eclipse Foundation
8    *
9    *   or (per the licensee's choosing)
10   *
11   * under the terms of the GNU Lesser General Public License version 2.1
12   * as published by the Free Software Foundation.
13   */
14  package ch.qos.logback.classic.net.server;
15  
16  import java.util.concurrent.Executor;
17  
18  import ch.qos.logback.classic.LoggerContext;
19  import ch.qos.logback.core.net.server.ConcurrentServerRunner;
20  import ch.qos.logback.core.net.server.ServerListener;
21  import ch.qos.logback.core.net.server.ServerRunner;
22  
23  /**
24   * A {@link ServerRunner} that receives logging events from remote appender
25   * clients.
26   *
27   * @author Carl Harris
28   */
29  class RemoteAppenderServerRunner extends ConcurrentServerRunner<RemoteAppenderClient> {
30  
31      /**
32       * Constructs a new server runner.
33       * 
34       * @param listener the listener from which the server will accept new clients
35       * @param executor that will be used to execute asynchronous tasks on behalf of
36       *                 the runner.
37       */
38      public RemoteAppenderServerRunner(ServerListener<RemoteAppenderClient> listener, Executor executor) {
39          super(listener, executor);
40      }
41  
42      /**
43       * {@inheritDoc}
44       */
45      @Override
46      protected boolean configureClient(RemoteAppenderClient client) {
47          client.setLoggerContext((LoggerContext) getContext());
48          return true;
49      }
50  
51  }