patterntesting.runtime.annotation.Synchronized Maven / Gradle / Ivy
Go to download
PatternTesting Runtime (patterntesting-rt) is the runtime component for
the PatternTesting framework. It provides the annotations and base classes
for the PatternTesting testing framework (e.g. patterntesting-check,
patterntesting-concurrent or patterntesting-exception) but can be also
used standalone for classpath monitoring or profiling.
It uses AOP and AspectJ to perform this feat.
The newest version!
/**
* $Id: Synchronized.java,v 1.6 2009/12/19 22:34:09 oboehm Exp $
*
* Copyright (c) 2008 by Oliver Boehm
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express orimplied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* (c)reated 13.11.2008 by oliver ([email protected])
*/
package patterntesting.runtime.annotation;
import java.lang.annotation.*;
import java.util.concurrent.TimeUnit;
/**
* Instead of synchronized methods you can mark these methods as
* "@Synchronized". This aspect will use ReentrantLock to realize it
* and to avoid deadlocks.
* If you set the log level to TRACE you can get additional information
* about the locks and waiting threads.
*
* @deprecated moved to patterntesting.annotation.concurrent
* @see patterntesting.annotation.concurrent.Synchronized
*
* @author oliver
* @since 13.11.2008
* @version $Revision: 1.6 $
*/
@Documented
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Synchronized {
/** @deprecated moved to patterntesting.annotation.concurrent.Synchronized */
long timeout() default 1800L;
/** @deprecated moved to patterntesting.annotation.concurrent.Synchronized */
TimeUnit unit() default TimeUnit.SECONDS;
}