类 DestructionCallbackBindingListener
java.lang.Object
cn.taketoday.web.context.support.DestructionCallbackBindingListener
- 所有已实现的接口:
AttributeBindingListener,Serializable,EventListener
public class DestructionCallbackBindingListener
extends Object
implements AttributeBindingListener, Serializable
- 从以下版本开始:
- 4.0 2022/10/30 21:31
- 作者:
- Harry Yang
- 另请参阅:
-
字段概要
字段 -
构造器概要
构造器构造器说明DestructionCallbackBindingListener(Runnable destructionCallback) Create a new DestructionCallbackBindingListener for the given callback. -
方法概要
修饰符和类型方法说明voidvalueUnbound(WebSession session, String attributeName) Notifies the object that it is being unbound from a session and identifies the session.从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait从接口继承的方法 cn.taketoday.session.AttributeBindingListener
valueBound
-
字段详细资料
-
serialVersionUID
private static final long serialVersionUID- 另请参阅:
-
destructionCallback
-
-
构造器详细资料
-
DestructionCallbackBindingListener
Create a new DestructionCallbackBindingListener for the given callback.- 参数:
destructionCallback- the Runnable to execute when this listener object gets unbound from the session
-
-
方法详细资料
-
valueUnbound
从接口复制的说明:AttributeBindingListenerNotifies the object that it is being unbound from a session and identifies the session.The default implementation takes no action.
- 指定者:
valueUnbound在接口中AttributeBindingListener- 参数:
session- sessionattributeName- attribute name- 另请参阅:
-