@@ -122,31 +122,31 @@ public override IEnumerable<IActorRef> Children
122
122
get { return _cell . GetChildren ( ) ; }
123
123
}
124
124
125
- /// <inheritdoc/>
125
+
126
126
public override void Start ( )
127
127
{
128
128
_cell . Start ( ) ;
129
129
}
130
130
131
- /// <inheritdoc/>
131
+
132
132
public override void Stop ( )
133
133
{
134
134
_cell . Stop ( ) ;
135
135
}
136
136
137
- /// <inheritdoc/>
137
+
138
138
public override void Suspend ( )
139
139
{
140
140
_cell . Suspend ( ) ;
141
141
}
142
142
143
- /// <inheritdoc/>
143
+
144
144
public override bool IsLocal
145
145
{
146
146
get { return true ; }
147
147
}
148
148
149
- /// <inheritdoc/>
149
+
150
150
public override void SendSystemMessage ( ISystemMessage message )
151
151
{
152
152
_cell . SendSystemMessage ( message ) ;
@@ -178,21 +178,21 @@ public override ActorPath Path
178
178
/// </summary>
179
179
protected IInternalActorRef Supervisor => _supervisor ;
180
180
181
- /// <inheritdoc/>
181
+
182
182
public override bool IsTerminated => _cell . IsTerminated ;
183
183
184
184
/// <summary>
185
185
/// The type of mailbox used by this actor
186
186
/// </summary>
187
187
protected MailboxType MailboxType { get ; }
188
188
189
- /// <inheritdoc/>
189
+
190
190
public override void Resume ( Exception causedByFailure = null )
191
191
{
192
192
_cell . Resume ( causedByFailure ) ;
193
193
}
194
194
195
- /// <inheritdoc/>
195
+
196
196
public override void Restart ( Exception cause )
197
197
{
198
198
_cell . Restart ( cause ) ;
@@ -204,13 +204,13 @@ protected override void TellInternal(object message, IActorRef sender)
204
204
_cell . SendMessage ( sender , message ) ;
205
205
}
206
206
207
- /// <inheritdoc/>
207
+
208
208
public override IInternalActorRef GetSingleChild ( string name )
209
209
{
210
210
return _cell . GetSingleChild ( name ) ;
211
211
}
212
212
213
- /// <inheritdoc/>
213
+
214
214
public override IActorRef GetChild ( IReadOnlyList < string > name )
215
215
{
216
216
IActorRef current = this ;
0 commit comments