ZFFramework
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
ZFListener Class Reference

listener as ZFCallback, mostly used by ZFObject::observerNotify More...

#include <ZFObjectObserver.h>

Inheritance diagram for ZFListener:
ZFCallback

Public Types

typedef void(* FUNC_TYPE) (const ZFArgs &zfargs)
 function type for ZFListener
 

Public Member Functions

void execute (void) const
 see ZFListener
 
void execute (const ZFArgs &zfargs) const
 see ZFListener
 
void operator() (void) const
 see ZFListener
 
void operator() (const ZFArgs &zfargs) const
 see ZFListener
 
- Public Member Functions inherited from ZFCallback
template<typename T_ReturnType >
T_ReturnType executeExact () const
 see ZFCallback, you must assign the exact return type and param types for safe
 
template<typename T_ReturnType , typename Type0 >
T_ReturnType executeExact (Type0 param0) const
 see ZFCallback, you must assign the exact return type and param types for safe
 
template<typename T_ReturnType , typename Type0 , typename Type1 >
T_ReturnType executeExact (Type0 param0, Type1 param1) const
 see ZFCallback, you must assign the exact return type and param types for safe
 
template<typename T_ReturnType , typename Type0 , typename Type1 , typename Type2 >
T_ReturnType executeExact (Type0 param0, Type1 param1, Type2 param2) const
 see ZFCallback, you must assign the exact return type and param types for safe
 
template<typename T_ReturnType , typename Type0 , typename Type1 , typename Type2 , typename Type3 >
T_ReturnType executeExact (Type0 param0, Type1 param1, Type2 param2, Type3 param3) const
 see ZFCallback, you must assign the exact return type and param types for safe
 
template<typename T_ReturnType , typename Type0 , typename Type1 , typename Type2 , typename Type3 , typename Type4 >
T_ReturnType executeExact (Type0 param0, Type1 param1, Type2 param2, Type3 param3, Type4 param4) const
 see ZFCallback, you must assign the exact return type and param types for safe
 
template<typename T_ReturnType , typename Type0 , typename Type1 , typename Type2 , typename Type3 , typename Type4 , typename Type5 >
T_ReturnType executeExact (Type0 param0, Type1 param1, Type2 param2, Type3 param3, Type4 param4, Type5 param5) const
 see ZFCallback, you must assign the exact return type and param types for safe
 
template<typename T_ReturnType , typename Type0 , typename Type1 , typename Type2 , typename Type3 , typename Type4 , typename Type5 , typename Type6 >
T_ReturnType executeExact (Type0 param0, Type1 param1, Type2 param2, Type3 param3, Type4 param4, Type5 param5, Type6 param6) const
 see ZFCallback, you must assign the exact return type and param types for safe
 
template<typename T_ReturnType , typename Type0 , typename Type1 , typename Type2 , typename Type3 , typename Type4 , typename Type5 , typename Type6 , typename Type7 >
T_ReturnType executeExact (Type0 param0, Type1 param1, Type2 param2, Type3 param3, Type4 param4, Type5 param5, Type6 param6, Type7 param7) const
 see ZFCallback, you must assign the exact return type and param types for safe
 
zfindex objectRetainCount (void) const
 get current retain count
 
void objectInfoT (zfstring &ret) const
 see objectInfo
 
zfstring objectInfo (void) const
 return object info
 
ZFCompareResult objectCompare (const ZFCallback &ref) const
 compare with another callback
 
ZFCompareResult objectCompareByInstance (const ZFCallback &ref) const
 compare callback by instance only (same callback contents not necessarily to be same instance)
 
void callbackClear (void)
 explicitly clear reference of this callback
 
void callbackId (const zfchar *callbackId)
 an unique id for the callback, used for cache logic
 
const zfcharcallbackId (void) const
 see callbackId
 
void callbackTag (const zfchar *key, ZFObject *tag)
 retain and store a autoreleased object attached to this callback, or set null to remove
 
zfany callbackTag (const zfchar *key) const
 see callbackTag
 
void callbackTagGetAllKeyValue (ZFCoreArray< zfstring > &allKey, ZFCoreArray< zfauto > &allValue) const
 see callbackTag
 
void callbackTagRemove (const zfchar *key)
 remove tag, same as set tag to null
 
zfauto callbackTagRemoveAndGet (const zfchar *key)
 remove tag, return removed tag or null if not exist
 
void callbackTagRemoveAll (void)
 see callbackTag
 
zfbool callbackValid (void) const
 return true if callback is valid
 
ZFCallbackType callbackType (void) const
 get the type of callback
 
zfany callbackOwnerObject (void) const
 get the owner object, valid only if type is class member method
 
const ZFMethodcallbackMethod (void) const
 get the method or null if not declared by ZFMethod
 
ZFFuncAddrType callbackRawFunction (void) const
 get static function, valid only if type is ZFCallbackTypeRawFunction
 
void * callbackLambdaImpl (void) const
 impl for lambda type
 
ZFFuncAddrType callbackLambdaInvoker (void) const
 impl for lambda type
 
void callbackOwnerObjectRetain (void) const
 retain owner object and auto release it after callback's retain count reduced to 0
 
void callbackOwnerObjectRelease (void) const
 manually release the owner, see callbackOwnerObjectRetain
 
void callbackSerializeCustomType (const zfchar *customType)
 see ZFTypeId_ZFCallback
 
const zfcharcallbackSerializeCustomType (void) const
 see ZFTypeId_ZFCallback
 
void callbackSerializeCustomData (const ZFSerializableData *customData)
 see ZFTypeId_ZFCallback
 
void callbackSerializeCustomData (const ZFSerializableData &customData)
 see ZFTypeId_ZFCallback
 
const ZFSerializableDatacallbackSerializeCustomData (void) const
 see ZFTypeId_ZFCallback
 
void callbackSerializeCustomDisable (zfbool disable)
 see ZFTypeId_ZFCallback
 
zfbool callbackSerializeCustomDisabled (void) const
 see ZFTypeId_ZFCallback
 
const ZFPathInfopathInfo (void) const
 used for impl to store path related info, see ZFPathInfo
 
void pathInfo (const ZFPathInfo *pathInfo)
 see pathInfo
 
void pathInfo (const zfchar *pathType, const zfchar *pathData)
 see pathInfo
 

Detailed Description

listener as ZFCallback, mostly used by ZFObject::observerNotify

listeners usually achieved by observer logic in ZFObject, see ZFObject::observerNotify for more info

what params means, is determined by invoker of the listener, see each listener's comments before use it


The documentation for this class was generated from the following file: