Examples of FCPPluginReply


Examples of freenet.clients.fcp.FCPPluginReply

  @Override
  public void send(SimpleFieldSet params, Bucket bucket) throws PluginNotFoundException {
    // like in linux everthing is a file, in Plugintalker everything is a plugin. So it throws PluginNotFoundException
    // instead fcp connection errors
    if (handler.isClosed()) throw new PluginNotFoundException("FCP connection closed");
    FCPPluginReply reply = new FCPPluginReply(pluginname, clientSideIdentifier, params, bucket);
    handler.outputHandler.queue(reply);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.