The version of Apache log4j used by SoundHelix.

[[ 🗃 ^aEp6o apache-log4j ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/aEp6o

SSH: git clone USERNAME@vervis.peers.community:aEp6o

Branches

Tags

v_1_1b5 :: examples /

NumberCruncher.java


package org.apache.log4j.examples;

import java.rmi.Remote;
import java.rmi.RemoteException;

/**
   NumberCruncher's factor positive integers. See <a
   href=doc-files/NumberCruncher.java>source</a> code for more details.

   @author Ceki G&uuml;lc&uuml;
   
*/
public interface NumberCruncher extends Remote {

  /**
     Factor a positive integer <code>number</code> and return its
     <em>distinct</em> factor's as an integer array.
  */
  int[] factor(int number) throws RemoteException;
}

[See repo JSON]