-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): rename composite endpoint interface
- Loading branch information
1 parent
e0357bb
commit f4e4e66
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ndpoints/composites/ICompositeEndpoint.kt → .../composites/ICompositeEndpointInternal.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package io.github.thibaultbee.streampack.core.elements.endpoints.composites | ||
|
||
import io.github.thibaultbee.streampack.core.elements.endpoints.IEndpointInternal | ||
import io.github.thibaultbee.streampack.core.elements.endpoints.IEndpoint | ||
import io.github.thibaultbee.streampack.core.elements.endpoints.IEndpointInternal | ||
import io.github.thibaultbee.streampack.core.elements.endpoints.composites.muxers.IMuxer | ||
import io.github.thibaultbee.streampack.core.elements.endpoints.composites.sinks.ISink | ||
|
||
interface ICompositeEndpoint : IEndpointInternal, IPublicCompositeEndpoint | ||
interface ICompositeEndpointInternal : IEndpointInternal, ICompositeEndpoint | ||
|
||
interface IPublicCompositeEndpoint : IEndpoint { | ||
interface ICompositeEndpoint : IEndpoint { | ||
val muxer: IMuxer | ||
val sink: ISink | ||
} |