Uses of Class
org.apache.camel.model.SamplingDefinition

Packages that use SamplingDefinition
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
 

Uses of SamplingDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return SamplingDefinition
 SamplingDefinition ProcessorDefinition.sample()
          Sampling Throttler Creates a sampling throttler allowing you to extract a sample of exchanges from the traffic on a route.
 SamplingDefinition ProcessorDefinition.sample(long messageFrequency)
          Sampling Throttler Creates a sampling throttler allowing you to extract a sample of exchanges from the traffic through a route.
 SamplingDefinition ProcessorDefinition.sample(long samplePeriod, TimeUnit unit)
          Sampling Throttler Creates a sampling throttler allowing you to extract a sample of exchanges from the traffic through a route.
 SamplingDefinition SamplingDefinition.sampleMessageFrequency(long messageFrequency)
          Sets the sample message count which only a single Exchange will pass through after this many received.
 SamplingDefinition SamplingDefinition.samplePeriod(long samplePeriod)
          Sets the sample period during which only a single Exchange will pass through.
 SamplingDefinition SamplingDefinition.timeUnits(TimeUnit units)
          Sets the time units for the sample period, defaulting to seconds.
 



Apache Camel