Interface FFICommunicatorGen
-
- All Superinterfaces:
FFICommunicator
,com.alibaba.fastffi.FFIPointer
,FFIType
,Serializable
- All Known Implementing Classes:
FFICommunicatorGen_cxx_0xd6e741c0
public interface FFICommunicatorGen extends FFICommunicator
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default <MSG_T> void
max(MSG_T msgIn, MSG_T msgOut)
default <MSG_T> void
min(MSG_T msgIn, MSG_T msgOut)
default <MSG_T> void
receiveFrom(int srcFid, MSG_T msgIn)
default <MST_T> void
sendTo(int dstFid, MST_T msgOut)
default <MSG_T> void
sum(MSG_T msgIn, MSG_T msgOut)
-
-
-
Method Detail
-
sum
default <MSG_T> void sum(MSG_T msgIn, MSG_T msgOut)
- Specified by:
sum
in interfaceFFICommunicator
-
min
default <MSG_T> void min(MSG_T msgIn, MSG_T msgOut)
- Specified by:
min
in interfaceFFICommunicator
-
max
default <MSG_T> void max(MSG_T msgIn, MSG_T msgOut)
- Specified by:
max
in interfaceFFICommunicator
-
sendTo
default <MST_T> void sendTo(int dstFid, MST_T msgOut)
- Specified by:
sendTo
in interfaceFFICommunicator
-
receiveFrom
default <MSG_T> void receiveFrom(int srcFid, MSG_T msgIn)
- Specified by:
receiveFrom
in interfaceFFICommunicator
-
-