This file contains hidden or 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
using Nest; | |
using System; | |
using System.Globalization; | |
namespace elasticsearch_nest_geoindex_demo | |
{ | |
public class Location | |
{ | |
public string Name { get; set; } |
This file contains hidden or 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
source https://www.nuget.org/api/v2/ | |
nuget Nuget.CommandLine | |
nuget AggregateSource 0.0.300 framework: >= net452 | |
nuget AggregateSource.EventStore 0.0.300 framework: >= net452 | |
nuget Autofac 3.5.2 framework: >= net452 | |
nuget EventStore.Client 3.2.1 framework: >= net452 | |
nuget EventStore.Client.Embedded 3.2.1 framework: >= net452 | |
nuget EventStore.SerilogAdapter 1.0.0 framework: >= net452 | |
nuget Ix-Main 1.2.5 framework: >= net452 |
This file contains hidden or 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
public class Subscription | |
{ | |
public Subscription(SubscriptionId id, int maxSubscriptions) | |
{ | |
... | |
Dispatch(new SubscriptionCreated(..., maxSubscriptions)); | |
} | |
... | |
This file contains hidden or 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
import React, { PropTypes } from 'react' | |
const Todo = ({ onClick, completed, text }) => ( | |
<li | |
onClick={onClick} | |
style={{ | |
textDecoration: completed ? 'line-through' : 'none' | |
}} | |
> | |
{text} |
This file contains hidden or 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
/// <reference path="../typings/browser.d.ts" /> | |
import React, { PropTypes } from 'react'; | |
interface TodoProps { | |
onClick: any; | |
completed: boolean; | |
text: string; | |
} |
This file contains hidden or 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
internal class SubscribeObserver : IRunOnStartAndStop | |
{ | |
private readonly IBus _bus; | |
public SubscribeObserver(IBus bus) | |
{ | |
_bus = bus; | |
} | |
public void OnBeforeStart() |
This file contains hidden or 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
// Copyright 2007-2015 Chris Patterson, Dru Sellers, Travis Smith, et. al. | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use | |
// this file except in compliance with the License. You may obtain a copy of the | |
// License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// | |
// Unless required by applicable law or agreed to in writing, software distributed | |
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
This file contains hidden or 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
namespace MassTransit.EntityFrameworkIntegration | |
{ | |
using System.Data.Common; | |
using System.Data.Entity; | |
using System.Data.Entity.Core.Objects; | |
using System.Data.Entity.Infrastructure; | |
using System.Reflection; | |
public class AssemblyScanningSagaDbContext : DbContext |
This file contains hidden or 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
using System.Threading.Tasks; | |
using MassTransit; | |
namespace Demo.MassTransit | |
{ | |
public abstract class BaseHandler<T> : IConsumer<T> where T : class | |
{ | |
protected ConsumeContext<T> Context { get; private set; } | |
public abstract Task Handle(T message); |
This file contains hidden or 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
using System; | |
using System.IO; | |
using System.Runtime.Loader; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using GreenPipes; | |
using MassTransit; | |
using Microsoft.Extensions.Configuration; | |
using Serilog; |