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

com.softwaremill.macwire.aop.Interceptor.scala Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package com.softwaremill.macwire.aop

import scala.reflect.ClassTag

trait Interceptor {

  /** Intercept calls to methods of the `intercepted` instance using this interceptor.
    */
  def apply[T <: AnyRef](intercepted: T)(implicit tag: ClassTag[T]): T
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy