Return-Path: Delivered-To: apmail-jakarta-avalon-dev-archive@jakarta.apache.org Received: (qmail 79746 invoked by uid 500); 18 Apr 2001 12:52:05 -0000 Mailing-List: contact avalon-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: "Avalon Development" Delivered-To: mailing list avalon-dev@jakarta.apache.org Received: (qmail 79734 invoked by uid 500); 18 Apr 2001 12:52:04 -0000 Delivered-To: apmail-jakarta-avalon-cvs@apache.org Date: 18 Apr 2001 12:52:03 -0000 Message-ID: <20010418125203.79730.qmail@apache.org> From: donaldp@apache.org To: jakarta-avalon-cvs@apache.org Subject: cvs commit: jakarta-avalon/src/java/org/apache/avalon/thread SingleThreaded.java ThreadSafe.java 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 Peter Donald */ 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 Peter Donald */ public interface ThreadSafe { } --------------------------------------------------------------------- To unsubscribe, e-mail: avalon-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: avalon-dev-help@jakarta.apache.org