[ 
https://issues.apache.org/jira/browse/MINIFI-5?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15228669#comment-15228669
 ] 

ASF GitHub Bot commented on MINIFI-5:
-------------------------------------

Github user JPercivall commented on a diff in the pull request:

    https://github.com/apache/nifi-minifi/pull/5#discussion_r58744060
  
    --- Diff: 
minifi-nar-bundles/minifi-framework-bundle/minifi-framework/minifi-runtime/src/main/java/org/apache/nifi/minifi/MiNiFi.java
 ---
    @@ -0,0 +1,236 @@
    +/**
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You 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
    + * <p>
    + * http://www.apache.org/licenses/LICENSE-2.0
    + * <p>
    + * 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 org.apache.nifi.minifi;
    +
    +import java.io.File;
    +import java.io.IOException;
    +import java.lang.Thread.UncaughtExceptionHandler;
    +import java.lang.reflect.Constructor;
    +import java.lang.reflect.InvocationTargetException;
    +import java.util.Timer;
    +import java.util.TimerTask;
    +import java.util.concurrent.Executors;
    +import java.util.concurrent.ScheduledExecutorService;
    +import java.util.concurrent.ScheduledFuture;
    +import java.util.concurrent.ThreadFactory;
    +import java.util.concurrent.TimeUnit;
    +import java.util.concurrent.atomic.AtomicInteger;
    +import java.util.concurrent.atomic.AtomicLong;
    +
    +import org.apache.nifi.NiFiServer;
    +import org.apache.nifi.documentation.DocGenerator;
    +import org.apache.nifi.nar.ExtensionManager;
    +import org.apache.nifi.nar.ExtensionMapping;
    +import org.apache.nifi.nar.NarClassLoaders;
    +import org.apache.nifi.nar.NarUnpacker;
    +import org.apache.nifi.util.FileUtils;
    +import org.apache.nifi.util.NiFiProperties;
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +import org.slf4j.bridge.SLF4JBridgeHandler;
    +
    +public class MiNiFi {
    --- End diff --
    
    Forgot to point out that the BootstrapListener's log and variable names 
also refer to nifi instead of minifi. 


> Create a proof of concept reference implementation
> --------------------------------------------------
>
>                 Key: MINIFI-5
>                 URL: https://issues.apache.org/jira/browse/MINIFI-5
>             Project: Apache NiFi MiNiFi
>          Issue Type: Task
>          Components: Core Framework
>            Reporter: Aldrin Piri
>            Assignee: Aldrin Piri
>             Fix For: 0.0.1
>
>
> As highlighted in a proposed roadmap for 
> https://cwiki.apache.org/confluence/display/NIFI/Proposed+Roadmap it would be 
> advantageous to establish a proof of concept implementation that reuses many 
> of the libraries that drive NiFi to help fill out and provide a test bed for 
> the proposed and new agent functionalities.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to