31 lines
577 B
C#
31 lines
577 B
C#
using System;
|
|
|
|
namespace Tapeti
|
|
{
|
|
public class TapetiConnectionBuilder
|
|
{
|
|
public IConnection Build()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
|
|
public TapetiConnectionBuilder SetExchange(string exchange)
|
|
{
|
|
return this;
|
|
}
|
|
|
|
|
|
public TapetiConnectionBuilder SetDependencyResolver(IDependencyResolver dependencyResolver)
|
|
{
|
|
return this;
|
|
}
|
|
|
|
|
|
public TapetiConnectionBuilder SetTopology(ITopology topology)
|
|
{
|
|
return this;
|
|
}
|
|
}
|
|
}
|