summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/messageDispatcher/IDispatchingStrategy.java
blob: 732496a2b79e04c8a3f9ed0d336879150ffc726e (plain)
1
2
3
4
5
6
7
8
9
package com.smartdevicelink.messageDispatcher;

public interface IDispatchingStrategy<messageType> {
	public void dispatch(messageType message);
	
	public void handleDispatchingError(String info, Exception ex);
	
	public void handleQueueingError(String info, Exception ex);
}