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

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

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 - 2025 Weber Informatics LLC | Privacy Policy