Interface Suspendable


public interface Suspendable
The Suspendable interface is used when a component will need to temporarily halt execution of a component. The execution may be halted so that you can reconfigure/ recompose/recontextualize component.
Version:
$Id: Suspendable.java 30977 2004-07-30 03:57:54 -0500 (Fri, 30 Jul 2004) niclas $
Author:
Avalon Development Team
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Resumes the component.
    void
    Suspends the component.
  • Method Details

    • suspend

      void suspend()
      Suspends the component.
    • resume

      void resume()
      Resumes the component.