/** An interface that define 3 constraints but just 2 are shown. ** since the implementer class can "hold staticly" the values ** of the P parameter. **/ package org.nanotek.mq; | ||
public interface Receiver<T, K, P> { | ||
public void processMessage(T messageType, K bodyMessage); | ||
} |