donaldp 01/04/18 05:52:03 Added: src/java/org/apache/avalon/thread SingleThreaded.java ThreadSafe.java Log: Move thread marker interfaces Revision Changes Path 1.1 jakarta-avalon/src/java/org/apache/avalon/thread/SingleThreaded.java Index: SingleThreaded.java =================================================================== /* * Copyright (C) The Apache Software Foundation. All rights reserved. * * This software is published under the terms of the Apache Software License * version 1.1, a copy of which has been included with this distribution in * the LICENSE file. */ package org.apache.avalon.thread; /** * A interface to mark a component as not ThreadSafe. * * NB: It was a deliberat e choice not to extend Component. This will have to * be reassed once we see it in action. * * @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a> */ public interface SingleThreaded { } 1.1 jakarta-avalon/src/java/org/apache/avalon/thread/ThreadSafe.java Index: ThreadSafe.java =================================================================== /* * Copyright (C) The Apache Software Foundation. All rights reserved. * * This software is published under the terms of the Apache Software License * version 1.1, a copy of which has been included with this distribution in * the LICENSE file. */ package org.apache.avalon.thread; /** * A interface to mark a component as ThreadSafe or reentrant. * * NB: It was a deliberat e choice not to extend Component. This will have to * be reassed once we see it in action. * * @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a> */ public interface ThreadSafe { } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]