Uses of Class
kilim.Fiber

Packages that use Fiber
Package
Description
 
 
  • Uses of Fiber in kilim

    Fields in kilim declared as Fiber
    Modifier and Type
    Field
    Description
    private Fiber
    Continuation.fiber
     
    protected Fiber
    Task.fiber
    The stack manager in charge of rewinding and unwinding the stack when Task.pause() is called.
    Methods in kilim that return Fiber
    Modifier and Type
    Method
    Description
    final Fiber
    Fiber.begin()
     
    Fiber.down()
     
    Methods in kilim with parameters of type Fiber
    Modifier and Type
    Method
    Description
    static void
    Task.errorExit(Throwable ex, Fiber f)
     
    void
    Continuation.execute(Fiber fiber)
    the woven variant of execute() generated by the weaver overriding this method will cause the weaver to leave it unchanged this is a low level facility (override execute() instead)
    void
    Fiber.Worker.execute(Fiber fiber)
     
    void
    Task.execute(Fiber f)
     
    static void
    Task.exit(Object aExitValue, Fiber f)
     
    static void
    Fiber.pause(Fiber f)
     
    static void
    Task.pause(PauseReason pauseReason, Fiber f)
     
    static void
    Fiber.yield(Fiber f)
    yield cooperatively to the next task waiting to use the thread
    static void
    Task.yield(Fiber f)
     
  • Uses of Fiber in kilim.support

    Methods in kilim.support with parameters of type Fiber
    Modifier and Type
    Method
    Description
    JettyHandler.Java7Handler.handle(String arg0, org.eclipse.jetty.server.Request arg1, javax.servlet.http.HttpServletRequest arg2, javax.servlet.http.HttpServletResponse arg3, Fiber arg4)