
org.specrunner.concurrency.IConcurrentMapping Maven / Gradle / Ivy
/*
SpecRunner - Acceptance Test Driven Development Tool
Copyright (C) 2011-2013 Thiago Santos
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see
*/
package org.specrunner.concurrency;
/**
* Given a resource by name, returns the equivalent within a concurrent
* environment, for example, when asked to a database url as
* IConcurrentMapping.get("url","jdbc:hsqld:mem:test")
could return
* "jdbc:hsqld:mem:testThread1"
.
*
* @author Thiago Santos
*
*/
public interface IConcurrentMapping {
/**
* Given a resource name and the original one, return a concurrent version
* of this resource.
*
* @param name
* The resource name.
* @param value
* The resource value.
* @return The changed resource.
*/
Object get(String name, Object value);
/**
* Get the thread name normalized.
*
* @return The thread name.
*/
String getThread();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy