All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dm.jrt.core.DefaultRoutine Maven / Gradle / Ivy

There is a newer version: 5.9.0
Show newest version
/*
 * 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 or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.github.dm.jrt.core;

import com.github.dm.jrt.builder.InvocationConfiguration;
import com.github.dm.jrt.invocation.Invocation;
import com.github.dm.jrt.invocation.InvocationException;
import com.github.dm.jrt.invocation.InvocationFactory;
import com.github.dm.jrt.log.Logger;

import org.jetbrains.annotations.NotNull;

/**
 * Default implementation of a routine object instantiating invocation objects through a factory.
 * 

* Created by davide-maestroni on 09/09/2014. * * @param the input data type. * @param the output data type. */ class DefaultRoutine extends AbstractRoutine { private final InvocationFactory mFactory; /** * Constructor. * * @param configuration the invocation configuration. * @param factory the invocation factory. */ @SuppressWarnings("ConstantConditions") DefaultRoutine(@NotNull final InvocationConfiguration configuration, @NotNull final InvocationFactory factory) { super(configuration); if (factory == null) { throw new NullPointerException("the invocation factory must not be null"); } mFactory = factory; } @NotNull @Override protected Invocation newInvocation(@NotNull final InvocationType type) { final Logger logger = getLogger(); try { final InvocationFactory factory = mFactory; logger.dbg("creating a new invocation instance with factory: %s", factory); final Invocation invocation = factory.newInvocation(); logger.dbg("created a new instance of class: %s", invocation.getClass()); return invocation; } catch (final Throwable t) { logger.err(t, "error creating the invocation instance"); throw InvocationException.wrapIfNeeded(t); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy