com.zipwhip.api.signals.SignalParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zipwhip-api Show documentation
Show all versions of zipwhip-api Show documentation
Java client to support applications powered by the Zipwhip Cloud
The newest version!
package com.zipwhip.api.signals;
/**
* Created by IntelliJ IDEA. User: jed Date: 6/28/11 Time: 11:44 AM
*
* An interface that creates/generates a signal from a given data structure.
*/
public interface SignalParser {
/**
* From this given object, parse out a signal object.
*
* @param object
* The object that came from the connection.
* @return The signal that is represented by this object.
* @throws Exception
* If this object cannot be parsed into a signal.
*/
Signal parseSignal(T object) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy