File tree Expand file tree Collapse file tree 2 files changed +7
-19
lines changed Expand file tree Collapse file tree 2 files changed +7
-19
lines changed Original file line number Diff line number Diff line change @@ -258,13 +258,12 @@ private static ActorSystem ActorSystemOf(IActorRefFactory context)
258
258
internal static class ActorMaterializerHelper
259
259
{
260
260
/// <summary>
261
- /// TBD
261
+ /// Converts an <see cref="IMaterializer"/> to an <see cref="ActorMaterializer"/>.
262
262
/// </summary>
263
- /// <param name="materializer">TBD </param>
263
+ /// <param name="materializer">The original materializer. </param>
264
264
/// <exception cref="ArgumentException">
265
265
/// This exception is thrown when the specified <paramref name="materializer"/> is not of type <see cref="ActorMaterializer"/>.
266
266
/// </exception>
267
- /// <returns>TBD</returns>
268
267
internal static ActorMaterializer Downcast ( IMaterializer materializer )
269
268
{
270
269
//FIXME this method is going to cause trouble for other Materializer implementations
Original file line number Diff line number Diff line change @@ -43,30 +43,19 @@ public override MessageDispatcher Dispatcher()
43
43
public class CallingThreadDispatcher : MessageDispatcher
44
44
{
45
45
/// <summary>
46
- /// TBD
46
+ /// HOCON id of the CallingThreadDispatcher
47
47
/// </summary>
48
- public static string Id = "akka.test.calling-thread-dispatcher" ;
49
-
50
- /// <summary>
51
- /// TBD
52
- /// </summary>
53
- /// <param name="configurator">TBD</param>
48
+ public new static string Id = "akka.test.calling-thread-dispatcher" ;
49
+
54
50
public CallingThreadDispatcher ( MessageDispatcherConfigurator configurator ) : base ( configurator )
55
51
{
56
52
}
57
-
58
- /// <summary>
59
- /// TBD
60
- /// </summary>
61
- /// <param name="run">TBD</param>
53
+
62
54
protected override void ExecuteTask ( IRunnable run )
63
55
{
64
56
run . Run ( ) ;
65
57
}
66
-
67
- /// <summary>
68
- /// TBD
69
- /// </summary>
58
+
70
59
protected override void Shutdown ( )
71
60
{
72
61
// do nothing
You can’t perform that action at this time.
0 commit comments