001package org.unix4j.context; 002 003/** 004 * Factory for an {@link ExecutionContext}. 005 */ 006public interface ExecutionContextFactory { 007 /** 008 * Creates and returns a new execution context instance. 009 * 010 * @return a new execution context instance 011 */ 012 ExecutionContext createExecutionContext(); 013}