java.lang.Object
org.apache.skywalking.oap.server.library.server.http.HTTPServer
所有已实现的接口:
Server

public class HTTPServer extends Object implements Server
  • 字段详细资料

    • sb

      protected com.linecorp.armeria.server.ServerBuilder sb
    • allowedMethods

      protected final Set<com.linecorp.armeria.common.HttpMethod> allowedMethods
  • 构造器详细资料

  • 方法详细资料

    • initialize

      public void initialize()
      指定者:
      initialize 在接口中 Server
    • addHandler

      public void addHandler(Object handler, List<com.linecorp.armeria.common.HttpMethod> httpMethods)
      参数:
      handler - Specific service provider.
      httpMethods - Register the http methods which the handler service accepts. Other methods respond "405, Method Not Allowed".
    • start

      public void start()
      指定者:
      start 在接口中 Server