Skip to content

Commit

Permalink
fixing failing pipelines errors
Browse files Browse the repository at this point in the history
  • Loading branch information
esttenorio committed Jan 27, 2025
1 parent 8d306d8 commit f8d61d1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public override Task SendEventAsync(KernelProcessEvent processEvent) =>
/// </summary>
public void Dispose() => this._localProcess.Dispose();

/// <inheritdoc/>
public override Task<IExternalKernelProcessMessageChannel?> GetExternalMessageChannelAsync()
{
return Task.FromResult(this._localProcess._externalMessageChannel);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
namespace Microsoft.SemanticKernel;

/// <summary>
/// Class used to allow using <see cref="IExternalEventBuffer"/> as <see cref="IExternalKernelProcessMessageChannelEmitter"/>
/// Class used to allow using <see cref="IExternalEventBuffer"/> as <see cref="IExternalKernelProcessMessageChannel"/>
/// in SK Process shared abstractions
/// </summary>
public class ExternalMessageBufferActorWrapper : IExternalKernelProcessMessageChannel
{
private readonly IExternalMessageBuffer _actor;

/// <summary>
/// Constructor to wrap <see cref="IExternalMessageBuffer"/> as <see cref="IExternalKernelProcessMessageChannelEmitter"/>
/// Constructor to wrap <see cref="IExternalMessageBuffer"/> as <see cref="IExternalKernelProcessMessageChannel"/>
/// </summary>
/// <param name="actor">The actor host.</param>
public ExternalMessageBufferActorWrapper(IExternalMessageBuffer actor)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public override async Task<KernelProcess> GetStateAsync()
return daprProcessInfo.ToKernelProcess();
}

/// <inheritdoc/>
public override Task<IExternalKernelProcessMessageChannel?> GetExternalMessageChannelAsync()
{
throw new NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Microsoft.SemanticKernel;
// is added in StepActor logic to make use of FindInputChannels

/// <summary>
/// An interface for <see cref="IExternalKernelProcessMessageChannelEmitter"/>
/// An interface for <see cref="IExternalKernelProcessMessageChannel"/>
/// </summary>
public interface IExternalMessageBuffer : IActor
{
Expand Down

0 comments on commit f8d61d1

Please sign in to comment.