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

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

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

import java.lang.reflect.Method

trait InvocationContext {
  def method: Method
  def parameters: Array[AnyRef]
  def target: AnyRef

  def proceed(): AnyRef = proceedWithParameters(parameters)
  def proceedWithParameters(parameters: Array[AnyRef]): AnyRef
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy