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

com.taobao.csp.sentinel.slots.block.callbacks.DefaultResourceHook Maven / Gradle / Ivy

There is a newer version: 1.8.3
Show newest version
package com.taobao.csp.sentinel.slots.block.callbacks;

import com.taobao.csp.sentinel.hook.HookTarget;

public class DefaultResourceHook implements ResourceHook {

	@Override
	public Object doHook(HookTarget target) throws Throwable {
		return target.call();
	}

	@Override
	public boolean needHock(String resource, String type) {
		return false;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy