Skip to content

Commit

Permalink
quartz.net-windsor integration
Browse files Browse the repository at this point in the history
git-svn-id: https://mausch.googlecode.com/svn/trunk/QuartzNetIntegration@61 2e0ef560-8745-0410-9514-09e3b7f35b6e
  • Loading branch information
mausch committed Aug 16, 2008
0 parents commit 29e777c
Show file tree
Hide file tree
Showing 25 changed files with 1,319 additions and 0 deletions.
32 changes: 32 additions & 0 deletions QuartzNetIntegration.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuartzNetIntegration", "QuartzNetIntegration\QuartzNetIntegration.csproj", "{C0056BBC-DCE4-4F05-8EAC-4DEB2EAFA90A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rhino.Commons", "Rhino.Commons\Rhino.Commons.csproj", "{53FEEF6A-ECEC-4D27-821A-8D351BC5CB2A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleApp", "SampleApp\SampleApp.csproj", "{99278FD2-0461-489C-ACA2-29EDE4A28F0A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C0056BBC-DCE4-4F05-8EAC-4DEB2EAFA90A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C0056BBC-DCE4-4F05-8EAC-4DEB2EAFA90A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C0056BBC-DCE4-4F05-8EAC-4DEB2EAFA90A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C0056BBC-DCE4-4F05-8EAC-4DEB2EAFA90A}.Release|Any CPU.Build.0 = Release|Any CPU
{53FEEF6A-ECEC-4D27-821A-8D351BC5CB2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{53FEEF6A-ECEC-4D27-821A-8D351BC5CB2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{53FEEF6A-ECEC-4D27-821A-8D351BC5CB2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{53FEEF6A-ECEC-4D27-821A-8D351BC5CB2A}.Release|Any CPU.Build.0 = Release|Any CPU
{99278FD2-0461-489C-ACA2-29EDE4A28F0A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{99278FD2-0461-489C-ACA2-29EDE4A28F0A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{99278FD2-0461-489C-ACA2-29EDE4A28F0A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{99278FD2-0461-489C-ACA2-29EDE4A28F0A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
14 changes: 14 additions & 0 deletions QuartzNetIntegration/IJobScheduler.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System.Collections.Generic;

namespace QuartzNetIntegration {
public interface IJobScheduler {
ICollection<string> GetJobNames();
void RunJob(string jobName);
ICollection<string> GetExecutingJobs();
void PauseAll();
void ResumeAll();
void PauseJob(string jobName);
bool DeleteJob(string jobName);
bool Interrupt(string jobName);
}
}
39 changes: 39 additions & 0 deletions QuartzNetIntegration/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
using System.Reflection;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.

[assembly: AssemblyTitle("QuartzNetIntegration")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("QuartzNetIntegration")]
[assembly: AssemblyCopyright("Copyright © 2008")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.

[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM

[assembly: Guid("ce944fb8-8d4b-4737-82cc-026484884a1a")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
78 changes: 78 additions & 0 deletions QuartzNetIntegration/QuartzNetIntegration.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{C0056BBC-DCE4-4F05-8EAC-4DEB2EAFA90A}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>QuartzNetIntegration</RootNamespace>
<AssemblyName>QuartzNetIntegration</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Castle.Core, Version=1.0.3.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\Castle.Core.dll</HintPath>
</Reference>
<Reference Include="Castle.Windsor, Version=1.0.3.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\Castle.Windsor.dll</HintPath>
</Reference>
<Reference Include="Common.Logging, Version=1.2.0.0, Culture=neutral, PublicKeyToken=af08829b84f0328e">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\Common.Logging.dll</HintPath>
</Reference>
<Reference Include="Quartz, Version=0.9.1.2, Culture=neutral, PublicKeyToken=4103d14a2b9fd8bf, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\Quartz.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="IJobScheduler.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="QuartzNetScheduler.cs" />
<Compile Include="QuartzNetSimpleScheduler.cs" />
<Compile Include="WindsorJobFactory.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Rhino.Commons\Rhino.Commons.csproj">
<Project>{53FEEF6A-ECEC-4D27-821A-8D351BC5CB2A}</Project>
<Name>Rhino.Commons</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
Loading

0 comments on commit 29e777c

Please sign in to comment.