PregelEx.Message (PregelEx v0.1.3)

View Source

Represents a message in the PregelEx system. Messages are used to communicate between vertices during supersteps.

Summary

Types

t()

@type t() :: %PregelEx.Message{
  content: any(),
  from_vertex_id: String.t(),
  superstep: non_neg_integer(),
  timestamp: DateTime.t(),
  to_vertex_id: String.t()
}

Functions

new(from_vertex_id, to_vertex_id, content, superstep)