Uses of Interface
net.xqhs.graphs.context.ContinuousMatchingProcess

Packages that use ContinuousMatchingProcess
net.xqhs.graphs.context The package contains classes and interfaces related to context representation, context patterns, and context matching. 
 

Uses of ContinuousMatchingProcess in net.xqhs.graphs.context
 

Subinterfaces of ContinuousMatchingProcess in net.xqhs.graphs.context
 interface ContinuousContextMatchingPlatform
          The interface is meant to be implemented by classes offering complete, real-time (asynchronous) context matching functionality.
 

Classes in net.xqhs.graphs.context that implement ContinuousMatchingProcess
 class CCMImplementation
           
 

Methods in net.xqhs.graphs.context that return ContinuousMatchingProcess
 ContinuousMatchingProcess ContinuousMatchingProcess.addMatchNotificationTarget(int thresholdK, ContinuousMatchingProcess.MatchNotificationReceiver receiver)
          Registers a ContinuousMatchingProcess.MatchNotificationReceiver as target for notifications for new matches below or with a specified k (see Match.
 ContinuousMatchingProcess ContinuousMatchingProcess.removeMatchNotificationTarget(ContinuousMatchingProcess.MatchNotificationReceiver receiver)
          Removes all registrations of the specified ContinuousMatchingProcess.MatchNotificationReceiver.
 ContinuousMatchingProcess CCMImplementation.removeMatchNotificationTarget(ContinuousMatchingProcess.MatchNotificationReceiver receiver)
           
 ContinuousMatchingProcess ContinuousMatchingProcess.startContinuousMatching()
          Instructs the process to start or to resume (from the state in which it was stopped).
 ContinuousMatchingProcess ContinuousContextMatchingPlatform.startMatchingAgainstAllPatterns(Graph graph, int thresholdK, ContinuousMatchingProcess.MatchNotificationReceiver receiver)
          Creates a new ContinuousMatchingProcess, unrelated to the platform except for the set of patterns, to match all patterns against the specified Graph instance.
 ContinuousMatchingProcess CCMImplementation.startMatchingAgainstAllPatterns(Graph graph, int thresholdK, ContinuousMatchingProcess.MatchNotificationReceiver receiver)
           
 ContinuousMatchingProcess ContinuousContextMatchingPlatform.startMatchingAgainstGraph(Graph pattern, int thresholdK, ContinuousMatchingProcess.MatchNotificationReceiver receiver)
          Creates a new ContinuousMatchingProcess, unrelated to the platform except for the current sequence of the Context Graph (not the matching sequence), that matches the context graph against the specified pattern.
 ContinuousMatchingProcess CCMImplementation.startMatchingAgainstGraph(Graph pattern, int thresholdK, ContinuousMatchingProcess.MatchNotificationReceiver receiver)
           
 ContinuousMatchingProcess ContinuousMatchingProcess.stopContinuousMatching()
          Instructs the process to stop.
 

Methods in net.xqhs.graphs.context with parameters of type ContinuousMatchingProcess
 void ContinuousMatchingProcess.MatchNotificationReceiver.receiveMatchNotification(ContinuousMatchingProcess platform, Match m)
          The method is called by a ContinuousMatchingProcess when a match is detected that conforms to the notification settings.