All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.opentracing.play.Routes.scala Maven / Gradle / Ivy

The newest version!
package io.opentracing.play

import play.api.mvc.RequestHeader
import play.api.routing.Router

object Routes {

  def endpointName(request: RequestHeader): Option[String] =
    request.attrs.get(Router.Attrs.HandlerDef).map { handler =>
      s"${handler.controller}.${handler.method}"
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy