C# 클래스 gSearch.Core.Graph.Services.Time.TimeScaleVertex

The TimeScaleVertex class manages a tuple in the form of a 3-nodes subgraph with a directed relationship configuration.
상속: TimeScaleVertexTraversal, ITimeScaleVertex
파일 보기 프로젝트 열기: kbastani/gsearch 1 사용 예제들

공개 메소드들

메소드 설명
InitializeTimeScaleInstance ( List nodes, List relationships, Func callback ) : void

Initializes the TimeScaleVertex class with supplied TimeScaleNode and TimeScaleRelationship lists.

TimeScaleVertex ( Func callback ) : System

Creates an uninitialized instance of the TimeScaleVertex class, without nodes and relationship data.

TimeScaleVertex ( List nodes, Func callback ) : System

Creates a new instance of the TimeScaleVertex class, supplying node data.

TimeScaleVertex ( List nodes, List relationships, Func callback ) : System

Creates a new instance of the TimeScaleVertex class, supplying node and relationship data.

메소드 상세

InitializeTimeScaleInstance() 공개 메소드

Initializes the TimeScaleVertex class with supplied TimeScaleNode and TimeScaleRelationship lists.
public InitializeTimeScaleInstance ( List nodes, List relationships, Func callback ) : void
nodes List The nodes that will be managed in the scope of this TimeScaleVertex class.
relationships List The relationships that will link the TimeScaleVertex nodes within the scope of this class.
callback Func The callback parameter supplies this implementation of the ITimeScaleVertex class a delegate method to callback to a /// globally managed TimeScale class.
리턴 void

TimeScaleVertex() 공개 메소드

Creates an uninitialized instance of the TimeScaleVertex class, without nodes and relationship data.
public TimeScaleVertex ( Func callback ) : System
callback Func /// The callback parameter supplies this implementation of the ITimeScaleVertex class a delegate method to callback to a /// globally managed TimeScale class. ///
리턴 System

TimeScaleVertex() 공개 메소드

Creates a new instance of the TimeScaleVertex class, supplying node data.
public TimeScaleVertex ( List nodes, Func callback ) : System
nodes List The nodes that will be managed in the scope of this TimeScaleVertex class.
callback Func /// The callback parameter supplies this implementation of the ITimeScaleVertex class a delegate method to callback to a /// globally managed TimeScale class. ///
리턴 System

TimeScaleVertex() 공개 메소드

Creates a new instance of the TimeScaleVertex class, supplying node and relationship data.
public TimeScaleVertex ( List nodes, List relationships, Func callback ) : System
nodes List The nodes that will be managed in the scope of this TimeScaleVertex class.
relationships List The relationships that will link the TimeScaleVertex nodes within the scope of this class.
callback Func The callback parameter supplies this implementation of the ITimeScaleVertex class a delegate method to callback to a /// globally managed TimeScale class.
리턴 System