PageRenderTime 32ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/wheels/vendor/memcached/com/facade/AbstractBaseFacade.cfc

http://cfwheels.googlecode.com/
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
  1. <cfcomponent name="AbstractBaseFacade" hint="The abstract base to all the scope facades">
  2. <cfscript>
  3. instance = StructNew();
  4. </cfscript>
  5. <cffunction name="init" hint="Constructor" access="public" returntype="AbstractBaseFacade" output="false">
  6. <cfscript>
  7. return this;
  8. </cfscript>
  9. </cffunction>
  10. <cffunction name="configure" hint="configuration, due to di loops" access="public" returntype="void" output="false">
  11. <cfargument name="key" hint="The key to store values under" type="string" required="Yes">
  12. <cfscript>
  13. setKey(arguments.key);
  14. </cfscript>
  15. </cffunction>
  16. </cfcomponent>