Package com.cosylab.epics.caj.impl
Interface ResponseRequest
-
- All Known Subinterfaces:
NotifyResponseRequest
- All Known Implementing Classes:
EventAddRequest,ReadNotifyRequest,WriteNotifyRequest
public interface ResponseRequest- Version:
- $id$
- Author:
- Matej Sekoranja
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcancel()Cancel response request (allways to be called to complete/destroy).voidexception(int errorCode, String errorMessage)Exception response notification.intgetIOID()Get I/O ID.voidtimeout()Timeout notification.
-
-
-
Method Detail
-
getIOID
int getIOID()
Get I/O ID.- Returns:
- ioid
-
timeout
void timeout()
Timeout notification.
-
cancel
void cancel()
Cancel response request (allways to be called to complete/destroy).
-
exception
void exception(int errorCode, String errorMessage)Exception response notification.- Parameters:
errorCode- exception code.errorMessage- received detailed message.
-
-