Package com.alibaba.graphscope.parallel
Interface PropertyMessageManager
-
- All Superinterfaces:
com.alibaba.fastffi.FFIPointer
,FFIType
,MessageManagerBase
,Serializable
- All Known Subinterfaces:
PropertyMessageManagerGen
- All Known Implementing Classes:
PropertyMessageManagerGen_cxx_0x687eff27
public interface PropertyMessageManager extends MessageManagerBase
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <FRAG_T,MSG_T>
@com.alibaba.fastffi.FFINameAlias("GetMessage") booleangetMessage(FRAG_T frag, Vertex<Long> vertex, MSG_T msg)
<FRAG_T,MSG_T>
voidsendMsgThroughEdges(FRAG_T frag, Vertex<Long> vertex, int eLabelId, MSG_T msg)
<FRAG_T,MSG_T>
voidsendMsgThroughIEdges(FRAG_T frag, Vertex<Long> vertex, int eLabelId, MSG_T msg)
<FRAG_T,MSG_T>
voidsendMsgThroughOEdges(FRAG_T frag, Vertex<Long> vertex, int eLabelId, MSG_T msg)
<FRAG_T,MSG_T>
voidsyncStateOnOuterVertex(FRAG_T frag, Vertex<Long> vertex, MSG_T msg)
-
Methods inherited from interface com.alibaba.graphscope.parallel.MessageManagerBase
finishARound, forceContinue, getMsgSize, start, startARound, toTerminate
-
-
-
-
Method Detail
-
sendMsgThroughIEdges
<FRAG_T,MSG_T> void sendMsgThroughIEdges(FRAG_T frag, Vertex<Long> vertex, int eLabelId, MSG_T msg)
-
sendMsgThroughOEdges
<FRAG_T,MSG_T> void sendMsgThroughOEdges(FRAG_T frag, Vertex<Long> vertex, int eLabelId, MSG_T msg)
-
sendMsgThroughEdges
<FRAG_T,MSG_T> void sendMsgThroughEdges(FRAG_T frag, Vertex<Long> vertex, int eLabelId, MSG_T msg)
-
syncStateOnOuterVertex
<FRAG_T,MSG_T> void syncStateOnOuterVertex(FRAG_T frag, Vertex<Long> vertex, MSG_T msg)
-
-