/** * Dianping.com Inc. * Copyright (c) 2003-2014 All Rights Reserved. */ package com.dianping.pigeon.remoting.provider.process; import com.dianping.pigeon.remoting.common.domain.InvocationRequest; import com.dianping.pigeon.remoting.common.domain.InvocationResponse; /** * @deprecated * @see ProviderInterceptor */ public interface ProviderProcessInterceptor { public void preInvoke(InvocationRequest invocationRequest); public void postInvoke(InvocationRequest invocationRequest, InvocationResponse invocationResponse); }