Import can map id's and references in incoming Interactions to id's and references that are local to the Spark Server.
예제 #1
0
 public void Internalize(IEnumerable<Interaction> interactions)
 {
     var import = new Import(this.localhost, this.generator);
     import.Add(interactions);
     import.Internalize();
 }
예제 #2
0
 public void Internalize(Interaction interaction)
 {
     var import = new Import(this.localhost, this.generator);
     import.Add(interaction);
     import.Internalize();
 }