/wheels/vendor/memcached/com/facade/AbstractBaseFacade.cfc
ColdFusion CFScript | 20 lines | 16 code | 4 blank | 0 comment | 0 complexity | d99e8e145de5a18edf887bc9eb46dad8 MD5 | raw file
Possible License(s): Apache-2.0, CPL-1.0
- <cfcomponent name="AbstractBaseFacade" hint="The abstract base to all the scope facades">
-
- <cfscript>
- instance = StructNew();
- </cfscript>
-
- <cffunction name="init" hint="Constructor" access="public" returntype="AbstractBaseFacade" output="false">
- <cfscript>
- return this;
- </cfscript>
- </cffunction>
-
- <cffunction name="configure" hint="configuration, due to di loops" access="public" returntype="void" output="false">
- <cfargument name="key" hint="The key to store values under" type="string" required="Yes">
- <cfscript>
- setKey(arguments.key);
- </cfscript>
- </cffunction>
-
- </cfcomponent>