models

Class BiConsumer

lucee.Component
    extended by models.BaseProxy
      extended by models.BiConsumer

Functional interface that maps to java.util.function.BiFunction See https://docs.oracle.com/javase/8/docs/api/java/util/function/BiConsumer.html

Class Attributes:
  • synchronized : false
  •  
  • accessors : false
  •  
  • persistent : false
  •  
    Constructor Summary
    init(any f)
          Constructor.
    Method Summary
    any accept([any t], [any u])
         Performs this operation on the given arguments.
    any andThen(any after)
     
    Methods inherited from class models.BaseProxy
    err, getCFMLContext, getConcurrentEngineLockName, getCurrentThread, getDebug, getLoadAppContext, getSystem, getTarget, getThread, getThreadName, inForkJoinPool, loadContext, out, sendExceptionToLogBoxIfAvailable, sendExceptionToOnExceptionIfAvailable, setDebug, setLoadAppContext, setSystem, setTarget, setThread, unLoadContext
     
    Methods inherited from class lucee.Component
    None

    Constructor Detail

    init

    public init(any f)

    Constructor

    Parameters:
    f - a function to be applied to to the previous element to produce a new element

    Method Detail

    accept

    public any accept([any t], [any u])

    Performs this operation on the given arguments. See https://docs.oracle.com/javase/8/docs/api/java/util/function/BiConsumer.html#accept-T-U-

    Parameters:
    t
    u

    andThen

    public any andThen(any after)

    Parameters:
    after