Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
CAP
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
CAP
Commits
5803d8f2
Commit
5803d8f2
authored
Apr 26, 2018
by
Savorboard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://github.com/dotnetcore/CAP
into develop
parents
bfa283e3
bbc98733
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
23 deletions
+4
-23
IConnectionPool.Default.cs
src/DotNetCore.CAP.Kafka/IConnectionPool.Default.cs
+0
-0
IConnectionChannelPool.Default.cs
...DotNetCore.CAP.RabbitMQ/IConnectionChannelPool.Default.cs
+0
-0
CapPublisherBase.cs
src/DotNetCore.CAP/Abstractions/CapPublisherBase.cs
+1
-1
ICapPublisher.cs
src/DotNetCore.CAP/ICapPublisher.cs
+2
-2
ICapSubscribe.cs
src/DotNetCore.CAP/ICapSubscribe.cs
+1
-1
IFetchedMessage.cs
src/DotNetCore.CAP/IFetchedMessage.cs
+0
-19
No files found.
src/DotNetCore.CAP.Kafka/
ConnectionPool
.cs
→
src/DotNetCore.CAP.Kafka/
IConnectionPool.Default
.cs
View file @
5803d8f2
File moved
src/DotNetCore.CAP.RabbitMQ/
ConnectionChannelPool
.cs
→
src/DotNetCore.CAP.RabbitMQ/
IConnectionChannelPool.Default
.cs
View file @
5803d8f2
File moved
src/DotNetCore.CAP/Abstractions/CapPublisherBase.cs
View file @
5803d8f2
...
...
@@ -132,7 +132,7 @@ namespace DotNetCore.CAP.Abstractions
{
throw
new
InvalidOperationException
(
"If you are using the EntityFramework, you need to configure the DbContextType first."
+
" otherwise you need to use overloaded method with IDb
Connection and IDb
Transaction."
);
" otherwise you need to use overloaded method with IDbTransaction."
);
}
}
...
...
src/DotNetCore.CAP/ICapPublisher.cs
View file @
5803d8f2
...
...
@@ -15,7 +15,7 @@ namespace DotNetCore.CAP
/// (EntityFramework) Asynchronous publish a object message.
/// <para>
/// If you are using the EntityFramework, you need to configure the DbContextType first.
/// otherwise you need to use overloaded method with
IDbConnection and
IDbTransaction.
/// otherwise you need to use overloaded method with IDbTransaction.
/// </para>
/// </summary>
/// <typeparam name="T">The type of content object.</typeparam>
...
...
@@ -28,7 +28,7 @@ namespace DotNetCore.CAP
/// (EntityFramework) Publish a object message.
/// <para>
/// If you are using the EntityFramework, you need to configure the DbContextType first.
/// otherwise you need to use overloaded method with IDb
Connection and IDb
Transaction.
/// otherwise you need to use overloaded method with IDbTransaction.
/// </para>
/// </summary>
/// <typeparam name="T">The type of content object.</typeparam>
...
...
src/DotNetCore.CAP/ICapSubscribe.cs
View file @
5803d8f2
...
...
@@ -4,7 +4,7 @@
namespace
DotNetCore.CAP
{
/// <summary>
/// An empty interface, which is used to mark the current class have a CAP methods.
/// An empty interface, which is used to mark the current class have a CAP
subscriber
methods.
/// </summary>
public
interface
ICapSubscribe
{
...
...
src/DotNetCore.CAP/IFetchedMessage.cs
deleted
100644 → 0
View file @
bfa283e3
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using
System
;
using
DotNetCore.CAP.Models
;
namespace
DotNetCore.CAP
{
public
interface
IFetchedMessage
:
IDisposable
{
int
MessageId
{
get
;
}
MessageType
MessageType
{
get
;
}
void
RemoveFromQueue
();
void
Requeue
();
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment