Ignore:
Timestamp:
09/10/13 21:11:41 (11 years ago)
Author:
psniegowski
Message:

HIGHLIGHTS:

  • import refactorization: move Tree, Path, etc.

from core to structure package

  • initial serialization implementation
  • improve PrimeExperiment? test
  • many organizational changes and convenience improvements

CHANGELOG:
Make registry in AbstractTree? final.

Move most classes from core to structure package.

Minor changes.

Switch names of Future and FutureHandler?.

Rename ExceptionResultHandler? to ExceptionHandler?.

Rename ExceptionHandler? to ExceptionDispatcherHandler?.

Fix bug in ParamCandidate? cache.

Add missing synchronization to the BufferedDispatcher?.

Develop @Serialized support.

Rework serialization further.

Add serialization/deserialization interface to ValueParam?.

Move getStorageType and isNumeric from Param down to params hierarchy.

Minor changes.

Improve param type induction.

Add TestSerializedClass? for testing new serialization.

Add info files gor GenePool? and Population.

Add standard.expt exemplary netfile.

Add type name field to PropertiesObject?.

Use PropertiesObject? for PropertiesAccess? instead of ordinary map.

Hide getFramsClass is several more places.

More unification accross FramsClass?, Access and Path.

Add ParamCollection?.

Simplify interface for getting params from FramsClass?, Access
or Path.

Make Access.call() interface variadic.

Add arguments(args) convenience wrapper around new Object[] {args}.

Upgrade to apache.commons.lang version 3.1

Minor improvement with Response constructors.

Develop proper result printing in ClientAtServer?.

Add experimentNetsave to PrimeExperiment?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/main/src/main/java/com/framsticks/communication/queries/NeedFile.java

    r101 r105  
    22
    33import com.framsticks.communication.File;
    4 import com.framsticks.util.dispatching.Future;
     4import com.framsticks.util.dispatching.FutureHandler;
    55import com.framsticks.util.lang.Strings;
    66
     
    99        protected final String suggestedName;
    1010        protected final String description;
    11         protected final Future<File> future;
     11        protected final FutureHandler<File> future;
    1212
    1313        /**
     
    1616         * @param future
    1717         */
    18         public NeedFile(String suggestedName, String description, Future<File> future) {
     18        public NeedFile(String suggestedName, String description, FutureHandler<File> future) {
    1919                this.suggestedName = suggestedName;
    2020                this.description = description;
     
    3939         * @return the future
    4040         */
    41         public Future<File> getFuture() {
     41        public FutureHandler<File> getFuture() {
    4242                return future;
    4343        }
Note: See TracChangeset for help on using the changeset viewer.