p2pMapReduce.mapreduceModule
Interface RawComparator<T>

Type Parameters:
T -
All Superinterfaces:
java.util.Comparator<T>
All Known Implementing Classes:
NullWritable.Comparator, WritableComparator

public interface RawComparator<T>
extends java.util.Comparator<T>

A Comparator that operates directly on byte representations of objects.

See Also:
DeserializerComparator

Method Summary
 int compare(byte[] b1, int s1, int l1, byte[] b2, int s2, int l2)
           
 
Methods inherited from interface java.util.Comparator
compare, equals
 

Method Detail

compare

int compare(byte[] b1,
            int s1,
            int l1,
            byte[] b2,
            int s2,
            int l2)