Commit Graph

10 Commits

Author SHA1 Message Date
Ilayaperumal Gopinathan
a1ca7e8963 Remove SearchStrategy.CURRENT
This was set on the ChannelBindingProperties bean. However, since the ModuleProperties
(which is of type ChannelBindingProperties) might have been initialized by the initializer,
the search strategy for the conditional bean needs to look at the hierarchy.

Added a TODO comment indicating this can be set to CURRENT once the initializer is removed.
2015-07-09 18:11:26 -04:00
Dave Syer
6e33369318 Add aggregate builder and sample applications
No need to specify channel names (just spring.cloud.streams.name). Example
app:

@SpringBootApplication
@EnableChannelBinding
public class ExtendedApplication implements AggregateConfigurer {

	@Override
	public void configure(AggregateBuilder builder) {
		builder
		.from(TimeSource.class).as("source")
		.via(LoggingTransformer.class)
		.via(LoggingTransformer.class).profiles("other")
		.to(LogSink.class);
	}
}

Fixes gh-2
2015-07-09 17:42:12 +01:00
David Turanski
0c82a37360 XD-3242 created spring-cloud-streams-codec
Fixes gh-3
2015-07-09 17:39:53 +01:00
Dave Syer
fc2397b11d Check simple XD samples are working 2015-07-09 10:01:07 +01:00
Dave Syer
f858c52103 More Bus->Streams name updates 2015-07-09 09:02:32 +01:00
David Turanski
3218c39d47 removed spring-xd-dirt dependencies 2015-07-08 16:00:44 -04:00
Dave Syer
2096a33d8a Split out XD specific bits into spring-xd-runner 2015-07-08 17:58:33 +01:00
Dave Syer
f6b079f62c Remove discovery fetaures 2015-07-08 17:08:07 +01:00
Dave Syer
39d7e244b9 Change package names 2015-07-08 17:05:33 +01:00
Dave Syer
997356cbe5 Switch to spring-cloud-streams naming 2015-07-08 17:02:44 +01:00