io.firebus.FunctionWorker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebus-core Show documentation
Show all versions of firebus-core Show documentation
Firebus core functionality
package io.firebus;
public class FunctionWorker extends Thread
{
//private Logger logger = Logger.getLogger("io.firebus");
protected FunctionEntry functionEntry;
protected Message inboundMessage;
protected NodeCore nodeCore;
public FunctionWorker(FunctionEntry fe, Message im, NodeCore nc)
{
functionEntry = fe;
inboundMessage = im;
nodeCore = nc;
setName("fbWorker" + getId());
functionEntry.runStarted();
start();
}
public void run()
{
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy