Skip to content
Snippets Groups Projects
Commit 42dbe29f authored by Christian Wulf's avatar Christian Wulf
Browse files

added further pipe factories

parent fe4c728c
No related branches found
No related tags found
No related merge requests found
...@@ -3,4 +3,5 @@ package teetime.variant.methodcallWithPorts.framework.core.pipe; ...@@ -3,4 +3,5 @@ package teetime.variant.methodcallWithPorts.framework.core.pipe;
public interface IPipeFactory { public interface IPipeFactory {
<T> IPipe<T> create(int capacity); <T> IPipe<T> create(int capacity);
} }
package teetime.variant.methodcallWithPorts.framework.core.pipe;
public class OrderedGrowableArrayPipeFactory implements IPipeFactory {
/**
* Hint: The capacity for this pipe implementation is ignored
*/
@Override
public <T> IPipe<T> create(final int capacity) {
return new OrderedGrowableArrayPipe<T>();
}
}
package teetime.variant.methodcallWithPorts.framework.core.pipe;
public class SingleElementPipeFactory implements IPipeFactory {
/**
* Hint: The capacity for this pipe implementation is ignored
*/
@Override
public <T> IPipe<T> create(final int capacity) {
return new SingleElementPipe<T>();
}
}
Subproject commit 88e1e25f9519b250258c7e5ada30935975ab2d10 Subproject commit 75998aa20b7ec897ec321c1f94192de888f2dc6e
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment