Uses of Interface
org.norther.tammi.core.base.Startable

Packages that use Startable
org.norther.tammi.core.logger   
org.norther.tammi.core.mail   
org.norther.tammi.core.monitor   
org.norther.tammi.core.startup   
org.norther.tammi.core.thread   
org.norther.tammi.root.castor   
org.norther.tammi.root.hibernate   
org.norther.tammi.root.ojb   
org.norther.tammi.root.rt   
org.norther.tammi.spray.connector   
org.norther.tammi.spray.engine   
org.norther.tammi.spray.freemarker   
org.norther.tammi.spray.remote   
org.norther.tammi.spray.servlet   
org.norther.tammi.spray.velocity   
 

Uses of Startable in org.norther.tammi.core.logger
 

Subinterfaces of Startable in org.norther.tammi.core.logger
 interface ThreadedLogger
          Extends Logger with support to execute logging in a separate thread.
 

Classes in org.norther.tammi.core.logger that implement Startable
 class AbstractThreadedLogger
          An abstract implementation of ThreadedLogger.
 class JDK4Logger
          A JDK4 logger implementation.
 class Log4JLogger
          A Log4J logger implementation.
 

Uses of Startable in org.norther.tammi.core.mail
 

Subinterfaces of Startable in org.norther.tammi.core.mail
 interface MailSender
          An interface to send mail.
 

Classes in org.norther.tammi.core.mail that implement Startable
 class DefaultMailSender
          A default implementation of MailSender.
 

Uses of Startable in org.norther.tammi.core.monitor
 

Subinterfaces of Startable in org.norther.tammi.core.monitor
 interface CacheMonitor
          An interface that extends CacheClient to control and monitor other registered cache clients.
 interface Finalizer
          An interface to reference queues for referents to be finalized before garbage collected.
 

Classes in org.norther.tammi.core.monitor that implement Startable
 class DefaultCacheMonitor
          The default implementation of CacheMonitor.
 class DefaultFinalizer
          A default implementation of Finalizer.
 

Uses of Startable in org.norther.tammi.core.startup
 

Subinterfaces of Startable in org.norther.tammi.core.startup
 interface Startup
          An interface to startups.
 

Classes in org.norther.tammi.core.startup that implement Startable
 class DefaultStartup
          A default implementation of StartupMBean.
 

Uses of Startable in org.norther.tammi.core.thread
 

Subinterfaces of Startable in org.norther.tammi.core.thread
 interface Executable
          An interface to executable objects, which can be executed in their own thread provided by a speficied executor.
 interface Executor
          An interface to executors that can execute Runnables using different thread models.
 interface PooledExecutor
          An interface to executors that queue executables and run them when a pooled thread is available.
 interface Schedulable
          An interface to schedulable objects, which can be executed in their own thread provided by a speficied scheduler.
 interface Scheduler
          An interface to schedulers to execute runnable commands as scheduled tasks.
 interface ThreadedExecutor
          An interface to executors that run each executable in a new thread.
 interface Timeout
          A specific scheduler for executing timeout commands.
 

Classes in org.norther.tammi.core.thread that implement Startable
 class AbstractExecutor
          An abstract implementation of Executor.
 class DefaultDirectExecutor
          A direct executor running executables in the caller's thread.
 class DefaultExecutable
          A default implementation of Executable.
 class DefaultPooledExecutor
          A default implementation of PooledExecutor.
 class DefaultSchedulable
          A default implementation of Schedulable.
 class DefaultScheduler
          A default implementation of Scheduler.
 class DefaultThreadedExecutor
          A default implementation of ThreadedExecutor.
 class DefaultTimeout
          A default implementation of Timeout.
 

Uses of Startable in org.norther.tammi.root.castor
 

Subinterfaces of Startable in org.norther.tammi.root.castor
 interface XMLPersisterFactory
          An interface to XML specific Persister factories.
 

Classes in org.norther.tammi.root.castor that implement Startable
 class DefaultXMLPersisterFactory
          A default implementation of XMLPersisterFactory.
 

Uses of Startable in org.norther.tammi.root.hibernate
 

Subinterfaces of Startable in org.norther.tammi.root.hibernate
 interface HibernatePersisterFactory
          An interface to org.hibernate.Session factories.
 

Classes in org.norther.tammi.root.hibernate that implement Startable
 class DefaultHibernatePersisterFactory
          A default implementation of HibernatePersisterFactory.
 

Uses of Startable in org.norther.tammi.root.ojb
 

Subinterfaces of Startable in org.norther.tammi.root.ojb
 interface OJBPersisterFactory
          An interface to org.apache.ojb.broker.PersistenceBroker factories.
 

Classes in org.norther.tammi.root.ojb that implement Startable
 class DefaultOJBPersisterFactory
          A default implementation of OJBPersisterFactory.
 

Uses of Startable in org.norther.tammi.root.rt
 

Subinterfaces of Startable in org.norther.tammi.root.rt
 interface VariableRootMBean
          VariableRootMBean extends VariableTreeMBean and provides a root for variable trees that need persistency.
 

Classes in org.norther.tammi.root.rt that implement Startable
 class VariableRoot
          A default implementation of VariableRootMBean.
 

Uses of Startable in org.norther.tammi.spray.connector
 

Subinterfaces of Startable in org.norther.tammi.spray.connector
 interface ChannelConnector
          An interface to channel connectors.
 interface Connector
          An interface to connectors listening and processing client requests.
 interface ExecutableConnector
          An interface to executable connectors.
 interface LocalConnector
          An interface to local connectors.
 interface SocketConnector
          An interface to socket connectors.
 interface TCPConnector
          An interface to TCP connectors.
 

Classes in org.norther.tammi.spray.connector that implement Startable
 class DefaultChannelConnector
          A default implementation of ChannelConnector.
 class DefaultConnector
          A default implementation of Connector.
 class DefaultExecutableConnector
          A default implementation of ExecutableConnector.
 class DefaultLocalConnector
          A default implementation of LocalConnector.
 class DefaultSocketConnector
          A default implementation of SocketConnector.
 class DefaultTCPConnector
          A default implementation of TCPConnector.
 

Uses of Startable in org.norther.tammi.spray.engine
 

Subinterfaces of Startable in org.norther.tammi.spray.engine
 interface TemplateEngine
          TemplateEngine is an interface to template engines, such as Velocity, WebMacro, FreeMarker, and JSP.
 

Classes in org.norther.tammi.spray.engine that implement Startable
 class AbstractTemplateEngine
          An abstract implementation of TemplateEngine.
 

Uses of Startable in org.norther.tammi.spray.freemarker
 

Classes in org.norther.tammi.spray.freemarker that implement Startable
 class FreemarkerEngine
          FreemarkerEngine implements TemplateEngine for Freemarker templates.
 

Uses of Startable in org.norther.tammi.spray.remote
 

Subinterfaces of Startable in org.norther.tammi.spray.remote
 interface RMIConnector
          An interface to RMI connectors.
 

Classes in org.norther.tammi.spray.remote that implement Startable
 class DefaultRMIConnector
          A default implementation RMIConnector.
 

Uses of Startable in org.norther.tammi.spray.servlet
 

Subinterfaces of Startable in org.norther.tammi.spray.servlet
 interface JSPEngine
          JSPEngine is an extension to ServletEngine for rendering JSP templates.
 interface ServletConnector
          An interface to servlet connectors.
 interface ServletEngine
          ServletEngine is an extension to TemplateEngine for rendering templates with the RequestDispatcher mechanism.
 

Classes in org.norther.tammi.spray.servlet that implement Startable
 class DefaultJSPEngine
          DefaultJSPEngine implements TemplateEngine for JSP templates.
 class DefaultServletConnector
          A default implementation of ServletConnector.
 class DefaultServletEngine
          DefaultServletEngine implements TemplateEngine for servlet templates.
 

Uses of Startable in org.norther.tammi.spray.velocity
 

Classes in org.norther.tammi.spray.velocity that implement Startable
 class VelocityEngine
          VelocityEngine implements TemplateEngine for Velocity templates.
 



Copyright © 2004 The Norther Organization. All rights reserved.