estonlabs.cxtl.exchanges.a.specification.domain.ImmediateAck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxtl Show documentation
Show all versions of cxtl Show documentation
CXTL – Crypto eXchange Trading Library
package estonlabs.cxtl.exchanges.a.specification.domain;
public interface ImmediateAck extends Ack{
default AckStatus getAckStatus(){
return getOrderId()!=null?AckStatus.SUCCESS:AckStatus.FAIL;
}
}